@dto 呼出超级面板的时候会默认复制文本/文件吗?有时候会不稳定没有复制?如果我想通过代码实现在执行功能前先复制文本/文件到剪贴板有可能吗?如果可以能不能教一下怎么写,小白试了半天还是没有成功,感谢
现在代码是这样的,主要就是想实现在执行贴图功能前先进行复制
const {exec} = require ('child_process');
window.exports = {
"Pixpin": {
mode: "none",
args: {
enter: (action) => {
window.utools.hideMainWindow ();
//action = { code, type, payload }
//do some thing
window.utools.outPlugin ();
// 执行指定命令
exec ('cd /d D:\\Software Installation\\PixPin\\PixPin && PixPin.exe -r "pixpin.pinFromCilpBoard ()"', (error, stdout, stderr) => {
// 可以根据需要处理执行结果,但这里不进行错误反馈
});
}
}
}
};