• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

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

Contributor ,
Aug 22, 2024 Aug 22, 2024

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

TOPICS
Actions and scripting , macOS

Views

108

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

LEGEND , Aug 22, 2024 Aug 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);
   }

 

Votes

Translate

Translate
Adobe
LEGEND ,
Aug 22, 2024 Aug 22, 2024

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

 

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Aug 23, 2024 Aug 23, 2024

Copy link to clipboard

Copied

LATEST

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines