Skip to main content
Known Participant
August 22, 2024
Answered

Photoshop - Can you assign an Action to a Keyboard Key that is NOT a Function Key Combo

  • August 22, 2024
  • 1 reply
  • 353 views

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

This topic has been closed for replies.
Correct answer Lumigraphics

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);
   }

 

1 reply

LumigraphicsCorrect answer
Legend
August 22, 2024

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);
   }

 

Stephen Marsh
Community Expert
Community Expert
August 23, 2024