吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 3926|回复: 2
收起左侧

[讨论] Auto.js 如何暂停脚本和重新运行?

[复制链接]
行云丶尘伤 发表于 2021-6-28 19:36
这个我已经改成,按下音量 + 停止脚本
如何改成按下音量 - 是暂停脚本,音量 + 是继续运行呢?

[JavaScript] 纯文本查看 复制代码
auto.waitFor();
app.launchApp('抖音')
sleep(5000);
青少年();
newVersion()
i = 1;
while (true) {
    toast("滑动" + i + '次')
    WidthOne = random(300, 800);
    HeightOne = random(1600, 1800);
    WidthTwo = random(300, 800);
    HeightTwo = random(500, 700);
    timeGo = random(250, 600);
    timeNext = random(4000, 9000);
    swipe(WidthOne, HeightOne, WidthTwo, HeightTwo, timeGo);
    sleep(timeNext);
    i++;
}

function 青少年(){
    if(className("android.widget.TextView").text("我知道了").exists()){
        className("android.widget.TextView").text("我知道了").findOne().click()
        toast("发现青少年模式,已自动取消")
    }
}


//检测到新版本跳过
function newVersion() {
    if (newVersion = text("以后再说").exists()) {
        newVersion.click();
    };
}

/**监听音量键 */
threads.start(function(){  //开启子线程
    //监听音量键-,关闭所有脚本
    events.observeKey();
    events.onKeyDown("volume_down",function(event){//音量+改为volume_up
      engines.stopAllAndToast();    
     });
 
 } )
/** 监听结束*/

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

xiaovssha 发表于 2021-6-28 20:26
while (true){
      if(!isstop){
  //todo
}
}
//音量+isstop=false;
//音量-isstop=true;
 楼主| 行云丶尘伤 发表于 2021-6-29 07:34
xiaovssha 发表于 2021-6-28 20:26
while (true){
      if(!isstop){
  //todo

那我就不需要监测按键了吧
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-25 23:14

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表