FastMushroom
FastMushroom
### Is your feature request related to a problem? Please describe. The current version sends screenshots from the clipboard in BMP format, but some software doesn't support BMP format. ###...
比如启动下面的脚本,控制台会正常输出,但是启动任意一个新脚本(即使为空脚本),控制台就不打印监听日志了,旧脚本在任务界面还显示运行中 ```js console.show() auto(); auto.registerEvent("WINDOW_STATE_CHANGED", function (event) { console.log("窗口变化:"+event.packageName+"\n"+event.className); }); events.on('exit', function () { auto.removeEvent("WINDOW_STATE_CHANGED"); toastLog("退出监听") }); setInterval(function () { }, 1000); ```