1楼:匿名用户
do while 1
g= getpixelcolor(900, 650)if g="e1e8fb" then
keypress "home"
delay 2000
end if
delay 200
loop
或者用cmpcolor更好一
些do while 1
if cmpcolor(900,650,"e1e8fb",1) =0 then
keypress "home"
delay 2000
end if
delay 200
loop
按键精灵后台根据某点颜色变化点击 5
2楼:匿名用户
x = 1218
y=644
a = getpixelcolor(x, y)if a = b9a05e then
moveto x, y
leftclick 1
end if
x1 = 1112
y1=274
b = getpixelcolor(x1, y1)if b =131b75 then
moveto x1, y1
leftclick 1
end if
x2 = 1112
y2=274
c = getpixelcolor(x2, y2)if b =040234 then
moveto x2, y2
leftclick 1
end if
//你的颜
色**按键精灵无法识别
按键精灵-识别颜色然后点击的命令 50
3楼:匿名用户
dim 是否相等
是否相等 = cmpcolor(100,200,"ffffff-000000|00ff00-000000",0.9)
if 是否相等 > -1 then
tap 100,200
traceprint "匹配颜
色的序号为:"&是否相等
else
traceprint "没有匹配的颜色"
end if
这是判断某一个点的颜色是否符合这2种颜色,如果是一个区域的话你可以搞2个for语句,取代一下坐标
4楼:匿名用户
嗯~好!寂!寞!聊吗? 头!像
按键精灵手机助手上如果一个点为什么颜色,那么点击这个点一次,否则脚本暂停,这个**怎么写? 10
5楼:
findcolour a,a,a,a,"0000ff",x,yif x > 0 and y > 0 thenmoveto x, y
leftclick 1
endif
其中4个a是查找范围的坐标,自己改一下。
0000ff是颜色,换成你需要的颜色。
这是电脑版的,手机助手应该差不多吧。
按键精灵范围找色 并点击返回值坐标 250
6楼:藤原子大雄
zx,zy变量没有给出具体参数,所以你这句语句,鼠标就点窗口客户区左上角了。我想你应该是这样的: call plugin.bkgnd.leftclick(hwnd,x,y)
手机按键精灵脚本,点击屏幕中间一次然后在目标区域抓取颜色并点击,
7楼:匿名用户
tap x1, y1//x1,y1代表
你屏幕中间的坐标
delay 200
findcolor 0,0,x2,y2,"123456-000000",0,1.0,intx,inty //x2,y2代表你屏幕最右下角的坐标
if intx >-1 then
traceprint "找到"
tap intx,inty
else
traceprint "没有找到"
end if
按键精灵颜色识别点击
8楼:匿名用户
下面是我的**:
'区域左上角的坐标
x1=100
y1=200
'区域右下角的坐标
x2=500
y2=400
while1
forx=x1tox2
fory=y1toy2
getcolor=getpixelcolor(x,y)ifgetcolor="7b7bef"thenmovetox,y
leftclick
delay1000
endif
next
next
keypress"f1",1
delay1000
wend
由于按键没有提供“范围找多色”的功能,所以就需要自己写一个循环来实现希望我的回答对你有帮助 ^.^
手机按键精灵 如何区域找色并点击
9楼:匿名用户
把命令换成后台命令
按键精灵-插件命令-后台命令里面有 键鼠 图色模拟的你这里都是前台的命令
后台需要先获取句柄 再操作句柄
按键精灵关于颜色点击的指令怎么打?
10楼:匿名用户
rcolor1 = getpixelcolor(x1, y1)rcolor2 = getpixelcolor(x2, y2)if rcolor1 = rcolor2 thentap x,y
end if