Copy link to clipboard
Copied
Can you assign an Action to a Keyboard Key that is NOT a Function Key ie: (cmd + shift + G)
Under Keyboard Shortcuts and Menues / Lanel Menus / Actions I can see some of Action Groups that I've created but non of the actions that make up that group.
Thanks - CES
Indirectly, you can write a script and once that script is properly installed, it will be listed in Keyboard Shortcuts where you can assign anything supported by other menu items.
#target photoshop
try{
app.doAction(set, action);
}
catch(e){
Window.alert('Unable to run Action.\rError: ' + e + ' Line: ' + e.line);
}
Copy link to clipboard
Copied
Indirectly, you can write a script and once that script is properly installed, it will be listed in Keyboard Shortcuts where you can assign anything supported by other menu items.
#target photoshop
try{
app.doAction(set, action);
}
catch(e){
Window.alert('Unable to run Action.\rError: ' + e + ' Line: ' + e.line);
}
Copy link to clipboard
Copied