※ 引述《jesse168 (阿哲)》之铭言:
: 请问按键精灵2014版本
: 如果我要写
: 指定区域找图,如果找到鼠标移动到图面上
: 如果没找到跳回去做前面一个动作
: 该怎么写
: 谢谢
: http://i.imgur.com/lc0uljc.jpg
: 类似要写图面上的动作
: 求神人帮助
: 谢谢
小弟不才试试看,有错还请各位高手帮忙更正
rem start
FindPic 0, 0, 1920, 1080, "Attachment:\1.bmp", 0.9, a, b
If a >= 0 And b >= 0 Then
MoveTo a,b
LeftDoubleClick 2
Delay 500
Goto step2
Else
Goto step3
End If
rem step2
FindPic 0, 0, 1920, 1080, "Attachment:\2.bmp", 0.9, x, y
If a >= 0 And b >= 0 Then
MoveTo x,y
LeftDoubleClick 2
Delay 500
Else
Goto start
End If
rem step3
FindPic 0, 0, 1920, 1080, "Attachment:\3.bmp", 0.9, q, w
If a >= 0 And b >= 0 Then
MoveTo q,w
LeftDoubleClick 2
Delay 500
Else
Goto step2
End If