按键精灵找图片数字如果找不到数字怎么让他按出指定的键

2024-12-28 13:13:59
推荐回答(1个)
回答1:

FindPic 0,0,1024,768,"Attachment:\神盾.bmp",0.9,intX,intY
If intX > 0 And intY > 0 Then//如果找到了就鼠标移动过去

MoveTo intX, intY
Delay 10
LeftClick
Else //没有找到

KeyPress "W", 1//这里的按键可以设定为任何的 按键

End If