因为工作原因做了一个自动化脚本,其中有大量需要寻找图片进行点击的操作,写了个区域寻图点击函数,但是需要传入区域坐标,用官方的Windows Spy简直不要太低效.于是写了一个脚本便于获得区域坐标.
CoordMode, Mouse, Relative ;声明坐标模式:鼠标相对于活动窗口;Screen为整个屏幕
~#c:: ;当前设置为win+c快捷键
MouseGetPos,startPoint_X,startPoint_Y ;获取鼠标初始点坐标
while GetKeyState("c")
{
MouseGetPos,endPoint_X,endPoint_Y ;获取当前鼠标坐标
ToolTip,% "左上角坐标:" startPoint_X "," startPoint_Y "`n右下角坐标:" endPoint_X "," endPoint_Y
sleep,10 ;Tooltip的刷新频率
}
ToolTip
clipboard:=startPoint_X ","startPoint_Y ","endPoint_X ","endPoint_Y ;坐标信息加入剪贴板
SetTimer, RemoveToolTip,-3500
ToolTip,%clipboard% `n已保存至剪贴板
Return
RemoveToolTip:
ToolTip
return
建议你试试飞跃的FindText函数库,非常好用
哦哦 我研究下看看
?