最近没写啥有趣的东西,但是已经很长时间没更新了,先挖个坑等寒假填
最近当了班委,就会有私戳多个同学的需要
在你要通知的人范围固定,通知内容差不多时,可以用这个脚本
ui.start.click(function(){
threads.start(function() {
console.show();
});
var myDate = new Date();
console.info(myDate.getMonth() + 1 + '月' + myDate.getDate() + '日');
var text = ui.userin.getText();
console.log("通知内容:")
console.log(text);
console.log("通知人员:")
console.log(nameList)
toast("开始通知");
var 子线程 = threads.start(function(){
for(i=0;i<nameList.length;i++){
toastLog("准备通知:" + nameList[i]);
app.startActivity({
action: "android.intent.action.VIEW",
data:"mqq://im/chat?chat_type=wpa&version=1&src_type=web&uin=" + qq[nameList[i]],
packageName: "com.tencent.mobileqq",
});
sleep(1000)
while(!className("EditText").depth(10).id("input").findOnce()){
console.verbose("等待跳转");
sleep(1000)
}
input(text)
toast("请检查消息,并点击发送点击发送")
sleep(1000)
while(!textStartsWith("发送").findOnce().click());
toastLog("点击发送")
while(!className("TextView").depth(10).id("chat_item_content_layout").textContains(text).findOnce()){
console.verbose("等待发送");
sleep(1000)
}
console.log(qq[nameList[i]] + " 完成");
}
console.info("通知完成");
exit();
});
});
ui部分写的很low,复制粘贴了几百行,等我寒假琢磨琢磨再发
|