按键精灵循环找多图、怎么简化代码
指定区域内、一查到就执行操作、再查、再操作、无限循环到我按结束为止代码我都写好了、我这段代码可以正常使用、但是如果我要找的图多了、代码一段一段的要复制很多、而且每段代码中...
指定区域内、一查到就执行操作、再查、再操作、无限循环到我按结束为止
代码我都写好了、我这段代码可以正常使用、但是如果我要找的图多了、代码一段一段的要复制很多、而且每段代码中就所找的图片名称不一样、有没有什么方法连接起来,比如(“图片1”,“图片2”,“图片3”等等等等等好多图)这样就不用一段段的复制改名字了
---------------------------------------------------------------------------------------------------
Do
FindPic 0,139,271,589,"Attachment:\1.bmp",1,intX,intY
If intX > 0 And intY > 0 Then
MoveTo intX, intY
RightClick 1
KeyPress "Up", 1
KeyPress "Enter", 1
Exit Do
End If
FindPic 0,139,271,589,"Attachment:\2.bmp",1,intX,intY
If intX > 0 And intY > 0 Then
MoveTo intX, intY
RightClick 1
KeyPress "Up", 1
KeyPress "Enter", 1
Exit Do
End If
FindPic 0,139,271,589,"Attachment:\3.bmp",1,intX,intY
If intX > 0 And intY > 0 Then
MoveTo intX, intY
RightClick 1
KeyPress "Up", 1
KeyPress "Enter", 1
Exit Do
End If
Loop
//我想要的是:不要写 N 段一样的代码、能不能把 N 张图片的名字连接起来、如何简化? 展开
代码我都写好了、我这段代码可以正常使用、但是如果我要找的图多了、代码一段一段的要复制很多、而且每段代码中就所找的图片名称不一样、有没有什么方法连接起来,比如(“图片1”,“图片2”,“图片3”等等等等等好多图)这样就不用一段段的复制改名字了
---------------------------------------------------------------------------------------------------
Do
FindPic 0,139,271,589,"Attachment:\1.bmp",1,intX,intY
If intX > 0 And intY > 0 Then
MoveTo intX, intY
RightClick 1
KeyPress "Up", 1
KeyPress "Enter", 1
Exit Do
End If
FindPic 0,139,271,589,"Attachment:\2.bmp",1,intX,intY
If intX > 0 And intY > 0 Then
MoveTo intX, intY
RightClick 1
KeyPress "Up", 1
KeyPress "Enter", 1
Exit Do
End If
FindPic 0,139,271,589,"Attachment:\3.bmp",1,intX,intY
If intX > 0 And intY > 0 Then
MoveTo intX, intY
RightClick 1
KeyPress "Up", 1
KeyPress "Enter", 1
Exit Do
End If
Loop
//我想要的是:不要写 N 段一样的代码、能不能把 N 张图片的名字连接起来、如何简化? 展开
1个回答
展开全部
iNum = Plugin.Pic.FindMultiPicEx(0,0,1024,768,"C:\图片.bmp", 0, 1.0)
iCoord = Split(iNum, "|")
For n = 0 To Ubound(iCoord)
XY = Split(iCoord(n), ",")
TracePrint XY(0)
TracePrint XY(1)
Next
//可以多个图片路径("C:\图片.bmp|D:\图片.bmp"),或者只要第一个有路径后面都跟随("D:\图片1.bmp|图片2.bmp")。
//失败返回:-1,-1|X,Y|...
iCoord = Split(iNum, "|")
For n = 0 To Ubound(iCoord)
XY = Split(iCoord(n), ",")
TracePrint XY(0)
TracePrint XY(1)
Next
//可以多个图片路径("C:\图片.bmp|D:\图片.bmp"),或者只要第一个有路径后面都跟随("D:\图片1.bmp|图片2.bmp")。
//失败返回:-1,-1|X,Y|...
更多追问追答
追问
您的脚本在调试过程中,产生了下列调试信息:
脚本
我的脚本1.Q ,第1行:对象不支持此属性或方法: 'PIC.FINDMULTIPICEX',
追答
更新按键版本.
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询