1. 首页 > 数码

按键精灵循环找图? 按键精灵循环找图10次

按键精灵循环找图?按键精灵循环找图10次

按键精灵如何设置循环找图

题主,你好!参考代码如下:

使用说明:将五张图片命名为:图1.bmp图2.bmp图3.bmp图4.bmp图5.bmp

Do

    For i = 1 To 4

        FindPic 0, 0, 1024, 768, "Attachment:\图5.bmp", 0.9, intX, intY

        If intX <= 0 Then 

            FindPic 0,0,1024,768,"Attachment:\图"&i&".bmp",0.9,intX,intY

            If intX > - 1  Then 

                MoveTo intX + 1, intY + 1

                LeftClick 1

            End If

        End If

        Delay 100

    Next

    Delay 100

Loop

按键精灵怎么循环找图 我把图1和图2找到了也点击了后面再出现图片就没

你可以重复运行脚本或者用一个do loop循环

Do

FindPic 0,0,1024,768,"Attachment:\神盾.bmp",0.9,intX,intY

If intX > 0 And intY > 0 Then

End If

FindPic 0,0,1024,768,"Attachment:\神盾.bmp",0.9,intX,intY

If intX > 0 And intY > 0 Then

End If

Loop

如何用按键精灵 循环找一个图 如果找到就点 找不到就继续循环找 直到找到为止

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如此即可~图片路径换你自己的。

按键精灵循环找图命令

GetColor=""

While GetColor=""

GetColor=GetPixelColor(x,y)

If GetColor="FF0000"

//你要执行的copy语句2113

End If

Delay 10 //延时是为了没有找到色的5261时候,防止4102CPU使用率1653过高。

Wend