按键精灵怎么写啊? 200
RemFindPic500,200,700,350,"Attachment:\435.bmp",0.95,intX,intYIfintX>0AndintY>0ThenMo...
Rem
FindPic 500,200, 700,350, "Attachment:\435.bmp", 0.95, intX, intY
If intX > 0 And intY > 0 Then
MoveTo 777,296
Delay 50
LeftClick 1
Delay 50
Goto
就是循环找图 出现435就点击 可是出现其他数字图片 比如 434 433 432图片也要点,怎么添加同时找多张图,或者什么别的方法:?
图每次只会出现一张,点了下一张才会出现,会随机出现。 展开
FindPic 500,200, 700,350, "Attachment:\435.bmp", 0.95, intX, intY
If intX > 0 And intY > 0 Then
MoveTo 777,296
Delay 50
LeftClick 1
Delay 50
Goto
就是循环找图 出现435就点击 可是出现其他数字图片 比如 434 433 432图片也要点,怎么添加同时找多张图,或者什么别的方法:?
图每次只会出现一张,点了下一张才会出现,会随机出现。 展开
3个回答
展开全部
do
FindPic 500,200, 700,350, "Attachment:\435.bmp", 0.95, intX, intY
If intX > 0 And intY > 0 Then
MoveTo 777,296
Delay 50
LeftClick 1
Delay 50
end if
FindPic 500,200, 700,350, "Attachment:\444.bmp", 0.95, intX, intY
If intX > 0 And intY > 0 Then
MoveTo 777,296
Delay 50
LeftClick 1
Delay 50
end if
FindPic 500,200, 700,350, "Attachment:\555.bmp", 0.95, intX, intY
If intX > 0 And intY > 0 Then
MoveTo 777,296
Delay 50
LeftClick 1
Delay 50
end if
delay 100 '加适当延时 降低CPU占用
loop
'就这样就可以了 出现哪张就会自动点 ,无限循环的.
'找图范围 和 要点击的坐标 自己修改一下就可以了.
'如果比较有经验了 可以自己写成函数调用 能省不少代码和时间
FindPic 500,200, 700,350, "Attachment:\435.bmp", 0.95, intX, intY
If intX > 0 And intY > 0 Then
MoveTo 777,296
Delay 50
LeftClick 1
Delay 50
end if
FindPic 500,200, 700,350, "Attachment:\444.bmp", 0.95, intX, intY
If intX > 0 And intY > 0 Then
MoveTo 777,296
Delay 50
LeftClick 1
Delay 50
end if
FindPic 500,200, 700,350, "Attachment:\555.bmp", 0.95, intX, intY
If intX > 0 And intY > 0 Then
MoveTo 777,296
Delay 50
LeftClick 1
Delay 50
end if
delay 100 '加适当延时 降低CPU占用
loop
'就这样就可以了 出现哪张就会自动点 ,无限循环的.
'找图范围 和 要点击的坐标 自己修改一下就可以了.
'如果比较有经验了 可以自己写成函数调用 能省不少代码和时间
展开全部
a = Array("432", "433", "434", "435")'图片名可无限添加
Do
For i = 0 To UBound(a)
FindPic 500,200, 700,350,"Attachment:\"&a(i)&".bmp",0.9,intX,intY
If intX > 0 And intY > 0 Then
MoveTo 777,296
Delay 100
LeftClick 1
Delay 100
End If
Delay 100
Next
Loop
Do
For i = 0 To UBound(a)
FindPic 500,200, 700,350,"Attachment:\"&a(i)&".bmp",0.9,intX,intY
If intX > 0 And intY > 0 Then
MoveTo 777,296
Delay 100
LeftClick 1
Delay 100
End If
Delay 100
Next
Loop
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
如何用按键精灵来完成自动化脚本,附带项目
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询