【绝密档案③】公布至今为止不为人知的天大秘密 =》看的进来回复哦
【绝密档案②】地址:
http://bbs.vrbrothers.com/viewthread.php?tid=103811【绝密档案①】地址:
http://bbs.vrbrothers.com/viewthread.php?tid=103657看内容:一直以来都不知道在VBS执行块里怎么插入找图、找色等按键本身的命令,有的人说不能用现公布如下方法:- VBSBegin
- '需要插入的VBS代码
- GetColor=GetPixelColor(10,5)
- msgbox "得到颜色值为:" & GetColor
- Call FindColor(0,0,1024,768,"FFFFFF",intX,intY)
- If intX>0 And intY>0 Then
- msgbox intX & "," & intY
- MoveTo intX,intY
- End If
- '找图类似
- Call FindPic(0,0,1024,768,"Attachment:\神盾.bmp",0.9,intX,intY)
- If intX>0 And intY>0 Then
- msgbox intX & "," & intY
- MoveTo intX,intY
- End If
- VBSEnd
复制代码- 您所在的用户组无法下载或查看附件
使用插件调用方法!- Import color.dll
- VBSBegin
- '需要插入的VBS代码
- a=Color.GetRGB(255,255,255)
- msgbox a
- VBSEnd
复制代码