按键精灵如何判断循环找图,先找图1并点击,没找到在找图2并点击,图1图二都没找到在找图3?

2024年11月20日 00:46
有2个网友回答
网友(1):

do
//找图 1
if Intx > 0 then
//执行动做
图1=1
else
图1=0
end if
delay 200
//找图 2
if Intx > 0 then
//执行动做
图2=1
else
图2=0
end if
delay 200
if 图1=0 and 图2 = 0 then
//找图 3
if Intx > 0 then
//执行动做
end if
end if
delay 200
Loop

网友(2):

dim picPathArr
picPathArr = Array("图片1.bmp","图片2.bmp","图片n.bmp") //定义图片路径数组

For i=0 to UBound(picPathArr)
FindPic .......... picPathArr(i) , ...... //自己设置找图参数,把图片路径替换为数组
If intX > 0 then
//执行动作或调用子程序
Exit For //找到图片后,退出循环
End If
Next