第1个回答 2018-01-13
While True
FindPic 0,0,1024,768,"x:\图片.bmp",0.9,x,y //找图
If x > 0 And y > 0 Then //如果找到图就移动过去并且鼠标左键点击1下
MoveTo x, y
LeftClick 1
End If
Delay 1000 //1秒找一次
Wend
如此即可~图片路径换你自己的。
第2个回答 2012-12-02
rem 找图
FindPic 0,0,1024,768,"Attachment:\神盾.bmp",0.9,intX,intY
If intX > 0 Then
MoveTo intX + 5, intY + 5
Delay 100
LeftClick 1
Else
Delay 1000
Goto 找图
End If本回答被网友采纳
第3个回答 推荐于2017-07-06
一个区域内找图,如果找到继续找,直到找到三次为止,如果没有找到,继续循环-如何用按键本回答被网友采纳
第4个回答 2018-01-11
rem 找图
FindPic 0,0,1024,768,"Attachment:\神盾.bmp",0.9,intX,intY
If intX > 0 Then
MoveTo intX + 5, intY + 5
Delay 100
LeftClick 1
Else
Delay 1000
Goto 找图
End If