如何用按键精灵实现循环找不同的图,且找到对应的图则进行对应的操作。
发布网友
发布时间:2022-05-06 09:16
我来回答
共1个回答
热心网友
时间:2023-10-08 22:54
delay
100
findpic
0,0,1440,900,"attachment:\图a.bmp",0.7,x1,y1
if
x1
>
0
and
y1
>
0
then
moveto
x1+5,
y1+5
leftclick
1
delay
500
findpic
0,0,1440,900,"attachment:\图b.bmp",0.7,x2,y2
if
x2
>
0
and
y2
>
0
then
moveto
x2+5,
y2+5
leftclick
1
end
if
end
if
将以上脚本设置为一直循环执行,直到按终止键为止。
算法:先延时0.1秒,再找图a,找到后点击图a,等待0.5秒。再找图b,找到后点击图b。
根据实际情况,可能要修改找图区域、图片相似度、延时时间