We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Y大,_addmenu.js中page栏添加如下代码不起作用,而单独写成三个就可以,麻烦帮忙看看怎么改,多谢多谢 { label: "Files", tooltiptext: "左键:Profiles\n中键:Chrome\n右键:Images", onclick : function(e) { switch(e.button) { case 0: exec : ""; closeMenus(this); break; case 1: exec : "\Chrome"; closeMenus(this); break; case 2: exec : "\extensions\[email protected]\content"; closeMenus(this); break; } } }
The text was updated successfully, but these errors were encountered:
page({ label: "Files", tooltiptext: "左键:Profiles\n中键:Chrome\n右键:Images", onclick: function(e) { var path; switch (e.button) { case 0: path = addMenu.handleRelativePath("\\"); break; case 1: path = addMenu.handleRelativePath("\\Chrome"); break; case 2: path = addMenu.handleRelativePath("\\extensions\\[email protected]\\content"); break; } addMenu.exec('C:\\Windows\\explorer.exe', [path]); } })
Sorry, something went wrong.
问题解决,谢谢Y大
No branches or pull requests
Y大,_addmenu.js中page栏添加如下代码不起作用,而单独写成三个就可以,麻烦帮忙看看怎么改,多谢多谢
{ label: "Files",
tooltiptext: "左键:Profiles\n中键:Chrome\n右键:Images",
onclick : function(e) {
switch(e.button) {
case 0:
exec : "";
closeMenus(this);
break;
case 1:
exec : "\Chrome";
closeMenus(this);
break;
case 2:
exec : "\extensions\[email protected]\content";
closeMenus(this);
break;
}
}
}
The text was updated successfully, but these errors were encountered: