按键精灵如何根据区域内找到不同颜色执行不同命令
在某个区域内,找5种颜色,如有找到前4种颜色,则移到颜色所在区域左键点击,如找到第五种颜色,则连续点击,下面是我找前4种颜色,没问题,但第五种颜色因为操作不一样,不知道怎...
在某个区域内,找5种颜色,如有找到前4种颜色,则移到颜色所在区域左键点击,如找到第五种颜色,则连续点击,下面是我找前4种颜色,没问题,但第五种颜色因为操作不一样,不知道怎么来写,请高手指点。
Dim Cor(3)
Dim s,x,y
Cor(0)="102664":Cor(1)="E6F9FF":Cor(2)="C5C8FB":Cor(3)="85B3F1"
Rem start
s=0
For 4
Delay 30
Call FindCenterColor(490,170,1015,570,Cor(s),x,y)
If x > 0 and y > 0 Then
MoveTo x,y
LeftClick 1
Else
End If
s=s+1
Next
EndScript
Goto start 展开
Dim Cor(3)
Dim s,x,y
Cor(0)="102664":Cor(1)="E6F9FF":Cor(2)="C5C8FB":Cor(3)="85B3F1"
Rem start
s=0
For 4
Delay 30
Call FindCenterColor(490,170,1015,570,Cor(s),x,y)
If x > 0 and y > 0 Then
MoveTo x,y
LeftClick 1
Else
End If
s=s+1
Next
EndScript
Goto start 展开
2个回答
展开全部
Dim Cor(3)
Dim s,x,y
Cor(0)="102664":Cor(1)="E6F9FF":Cor(2)="C5C8FB":Cor(3)="85B3F1"
Cor(4)="??????"
Rem start
s=0
For 5
Delay 30
Call FindCenterColor(490,170,1015,570,Cor(s),x,y)
If x > 0 and y > 0 Then
If Cor(s)="第5颜色" Then
Rem q
MoveTo x,y
Delay 30
LeftClick 1
Goto q
Else
MoveTo x,y
LeftClick 1
End If
Else
End If
s=s+1
Next
EndScript
Goto start
Dim s,x,y
Cor(0)="102664":Cor(1)="E6F9FF":Cor(2)="C5C8FB":Cor(3)="85B3F1"
Cor(4)="??????"
Rem start
s=0
For 5
Delay 30
Call FindCenterColor(490,170,1015,570,Cor(s),x,y)
If x > 0 and y > 0 Then
If Cor(s)="第5颜色" Then
Rem q
MoveTo x,y
Delay 30
LeftClick 1
Goto q
Else
MoveTo x,y
LeftClick 1
End If
Else
End If
s=s+1
Next
EndScript
Goto start
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |