按键精灵无限循环找图,找到图后移动到图片位置并点击,这样反复3次后结束。

2025年03月18日 02:42
有1个网友回答
网友(1):

For 3
    Do
        FindPic 0,0,1024,768,"Attachment:\神盾.bmp",0.9,intX,intY
        If intX > 0 Then 
            //找到图的动作
            MoveTo intX + 10, intY + 10
            Delay 50
            LeftClick 1
            Exit Do
        End If
        Delay 200
    Loop
    //刷新按钮点击
    Delay 1000
Next