大佬好,萌新请教,截图对比颜色后,返回坐标并点击它,可是要嘛是点击不了,要嘛是点错位置,用来横屏点击的,返回的坐标是对的,但是点击却出问题了,用了click,press,都有问题,root的tap也没反应!这个press能点,位置是错的!
萌新,看文档做的,请大佬帮忙解决下!感谢
auto();
requestScreenCapture();
//var 截图=images.read("/sdcard/0000/13.jpg");
var jt=captureScreen();
var a=findColor(jt,"#D0AFD8",{
region:[226,152,1026,417],
threshold:2
});
setScreenMetrics(1440,720);
var ra = new RootAutomator();
if (a){
toastLog("坐标已找到("+a.x+","+a.y+")");
ra.press(a.x,a.y,400);
ra.exit();
}else{
toastLog("没有找到!");
};
萌新,看文档做的,请大佬帮忙解决下!感谢
auto();
requestScreenCapture();
//var 截图=images.read("/sdcard/0000/13.jpg");
var jt=captureScreen();
var a=findColor(jt,"#D0AFD8",{
region:[226,152,1026,417],
threshold:2
});
setScreenMetrics(1440,720);
var ra = new RootAutomator();
if (a){
toastLog("坐标已找到("+a.x+","+a.y+")");
ra.press(a.x,a.y,400);
ra.exit();
}else{
toastLog("没有找到!");
};