58 lines
1.2 KiB
Markdown
58 lines
1.2 KiB
Markdown
```js
|
|
//这个是Auto.js图标的地址
|
|
var url = "https://www.autojs.org/assets/uploads/profile/3-profileavatar.png";
|
|
var logo = images.load(url);
|
|
//保存到路径/sdcard/auto.js.png
|
|
images.save(logo, "/sdcard/auto.js.png");
|
|
|
|
|
|
|
|
|
|
var url = "http://www.autojs.org/assets/uploads/profile/3-profileavatar.png";
|
|
var res = http.get(url);
|
|
if(res.statusCode !== 200){
|
|
toast("请求失败");
|
|
}
|
|
files.writeBytes("/sdcard/1.png", res.body.bytes());
|
|
toast("下载成功");
|
|
app.viewFile("/sdcard/1.png");
|
|
|
|
|
|
|
|
|
|
|
|
var path = "/sdcard/脚本/test.js";
|
|
if(!files.exists(path)){
|
|
toast("脚本文件不存在: " + path);
|
|
exit();
|
|
}
|
|
var window = floaty.window(
|
|
<frame>
|
|
<button id="action" text="开始运行" w="90" h="40" bg="#77ffffff"/>
|
|
</frame>
|
|
);
|
|
|
|
window.exitOnClose();
|
|
|
|
var execution = null;
|
|
|
|
window.action.click(()=>{
|
|
if(window.action.getText() === '开始运行'){
|
|
execution = engines.execScriptFile(path);
|
|
window.action.setText('停止运行');
|
|
}else{
|
|
if(execution){
|
|
execution.getEngine().forceStop();
|
|
}
|
|
window.action.setText('开始运行');
|
|
}
|
|
});
|
|
|
|
window.action.longClick(()=>{
|
|
window.setAdjustEnabled(!window.isAdjustEnabled());
|
|
return true;
|
|
});
|
|
|
|
setInterval(()=>{}, 1000);
|
|
|
|
``` |