1楼:匿名用户
假设intx,inty是找到颜色的坐标,那么
moveto intx,inty-50
就是鼠标遇到颜色正上方50像素处,如果你想移动到其他相对位置,只要坐标运算就行了。
2楼:匿名用户
moveto intx,inty-50
用按键精灵找色, 如何将鼠标移动到找到的这个坐标intx,inty
3楼:匿名用户
findcolor 0,0,1600,900,"c2e9c2",intx,inty
if intx > 0 and inty > 0 thenmoveto intx, inty
messagebox "找到了"
else
messagebox "没找到"
end if
试试这个回看找答到没
按键精灵区域找色问题…想实现 在某一区域内找色 如果找到执行鼠标移动到某坐标 如果找不到 则执行粘
4楼:
说明:xl:左横坐标
xr:右横坐标
yt:顶纵坐标 yb:底纵坐标
**findcolor xl,yt,xr,yb,"颜色**",intx,inty
if intx > 0 and inty > 0 thenmoveto intx, inty
eles
keydown 17,1
keydown 86,1
delay 75
keyup 86,1
keyup 17,1
end if
望采纳!!
按键精灵区域找色,然后鼠标点击一下,但有时候会多点一下。 10
5楼:匿名用户
区域找色**下边加延迟,有可能是本次**执行完毕,由于画面未更新出来,**执行了两次,安全起见,在找到颜色后和点击之前也加个延迟比较安全,不会乱点。
6楼:匿名用户
** 发上来。考虑****有问题了
按键精灵中区域找图找到**坐标后如何让鼠标点击坐标位置??
7楼:无心插柳柳变桃
//比如找图得到的坐标是intx,intymoveto intx,inty
delay 100
leftclick 1
8楼:匿名用户
哇 我也找到了 谢谢下面的大哥大馊~ 哈哈
9楼:翟芙聊钗
vbscall
getcursorpos(x,y)
rems
moveto
x,yleftclick
1goto
s脚本~
运行时把鼠标发到你以后要点的那个地方
按键精灵 如何在一个网页里面查找某个颜色然后鼠标移动上去并且点击鼠标左键
10楼:百元新
具体**如下:
findcolor 581,254,1012,485," 2738fd",intx,inty
if intx > 0 and inty > 0 then
moveto intx+10, inty+3
delay 2000
leftclick 1
end if
**解释如下:
findcolor 581,254,1012,485," 2738fd",intx,inty
在坐标x(581,254)y(1012,485)范围内查找颜色" 2738fd"
if intx > 0 and inty > 0 then
如果变量intx大于0 且 变量inty大于0 则视为找到颜色。
moveto intx+10, inty+3
将鼠标移动到坐标,并且x偏移10,y偏移3
delay 2000
延迟2秒
leftclick 1
鼠标左键点击1次
end if
语句结束。
11楼:生态养殖
首先 你得获取你要查找的文字的颜色 如果颜色值不是唯一 那么要吧 查找区域给限制一下 不然如果其他地方有同样颜色就会查找混乱 导致出错 然后就是获取到查找到的颜色的坐标 并且进行一定偏移 之后就是插入点击动作了
按键精灵抓移动坐标颜色怎么做?
12楼:匿名用户
[general]
description=左上角
beginhotkey=122
beginhotkeymod=0
pausehotkey=0
pausehotkeymod=0
stophotkey=123
stophotkeymod=0
runonce=1
enablewindow=
enable=1
autorun=0
[repeat]
type=0
number=1
[relative]
setupocxfile=
[***ment]
content=
[script]
dim ck
plugin ck = window.foreground()//插件命令,获取位于当前窗口的句柄
plugin window.move(ck, 0, 0)//插件命令,移动目标窗口至坐标0,0
不用再去抓色,只需解决窗口位置变化的问题就行了。以上**是把窗口移动到左上角,只需在这个位置抓色确定坐标,以后要使用脚本的时候再先运行次这个脚本就行了
按键精灵区域找同样颜色分别点击
13楼:匿名用户
//比如你要bai找du的范围起zhi点为dao100,100 终点200,150for i=0 to 100
for ii=0 to 50
cr1=getpixelcolor(100+i,100+ii)if cr1=你要的版
颜色权 then
moveto 100+i,100+ii
leftclick 1
next
next
按键精灵找颜色鼠标移动问题
14楼:匿名用户
具体**如下:
findcolor 581,254,1012,485," 2738fd",intx,inty
if intx > 0 and inty > 0 then
moveto intx+10, inty+3
delay 2000
leftclick 1
end if
**解释如下:
findcolor 581,254,1012,485," 2738fd",intx,inty
在坐标x(581,254)y(1012,485)范围内查找颜色" 2738fd"
if intx > 0 and inty > 0 then
如果变量
专intx大于
属0 且 变量inty大于0 则视为找到颜色。
moveto intx+10, inty+3
将鼠标移动到坐标,并且x偏移10,y偏移3
delay 2000
延迟2秒
leftclick 1
鼠标左键点击1次
end if
语句结束。
按键精灵,多点比色找到后鼠标点击个颜色坐标怎么写
1楼 归振英都妆 vbscall getcursorpos x y rems moveto x yleftclick 1goto s脚本 运行时把鼠标发到你以后要点的那个地方 2楼 匿名用户 dm ret dm findmulticolor 0 0 2000 2000 cc805b 020202 9...
按键精灵区域找色后鼠标怎么移动到那个点上
1楼 匿名用户 moveto x y delay n leftclick 1 改成moveto x 20 y 20 delay n leftclick 1 x和y 的值加上或减去一定的像素 就可以得到怪的实体位置具体数字是多少自己慢慢调试 大概也就是 20左右吧 2楼 匿名用户 楼上说错了 应该是m...
按键精灵出现颜色点击一次鼠标,一共点击43次怎么写
1楼 正版天行者 n 0 dofindcolor 0 0 1024 768 c44aff intx inty if intx 0 and inty 0 thenleftclicks 1 n n 1 end if if n 43 then exit do end if loop 这样写才是一直不停,一...