按键精灵 安卓版的,求指定坐标抓取指定颜色,然后再另外一个坐标点击的代码

2025-03-25 10:52:24
推荐回答(1个)
回答1:

Rem a
IfColor 255,177,"DC1923",0 Then
MessageBox "找到蓝色了,进行下一步找红色"
Call b()
Else
MessageBox "没找到呃"
Goto a
End If
Sub b()
IfColor 206,189,"106E1",0 Then
MessageBox "找到红色了"
End If
End Sub
EndScript