This content has been marked as final.
Show 2 replies
-
1. Re: need help with open folder (in Explorer) and click on Toggle Transparency Grid
Alex11G Jun 28, 2014 10:45 AM (in response to zipkiev)Actually your command should consist quotes. It will look like this:
app.executeCommand(app.findMenuCommandId("Toggle Transparency Grid"));But I`ve tried, and it doesn`t do what you need, because it launches Adobe Anywhere.
Solution for second question is:
var path = "C:/Program Files/Adobe/Adobe After Effects CC/Support Files/"; var cmd; cmd = ""; if($.os.indexOf("Win") != -1){ cmd = "explorer " + String(path); }else{ cmd += (("open \"" + String(path)) + "\""); // change var path for Mac } try { system.callSystem(cmd); }catch (e){ alert(e); } -
2. Re: need help with open folder (in Explorer) and click on Toggle Transparency Grid
zipkiev Jun 30, 2014 1:22 PM (in response to Alex11G)Alex Grey thx

