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

Possible for new artboard to be added below rather than above current layers?

Community Beginner ,
Jul 27, 2021 Jul 27, 2021

Hoping someone can help with this minor annoyance. I like to use artboards to organize assets like say social images. When I create a new artboard, the new artboard will always be added ABOVE the current artboard. I then have to manually move it below. I'd like to change the behavior to make the new artboard go below the current artboard. Is this possible? See image below for reference. Thanks!

 

Screen Shot 2021-07-27 at 9.59.26 AM.png

TOPICS
Actions and scripting , macOS
1.0K
Translate
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 2 Correct answers

LEGEND , Jul 27, 2021 Jul 27, 2021

When you want to add new artboard while the other artboard is selected and you want it was added below currently selected artbord, make sure the selected artboard is collapsed (so not like on your screenshot where it's expanded). Same for selected layerSet, freely for selected layer. Then use below script:

 

sTT = stringIDToTypeID; (ref = new ActionReference())
.putClass(sTT('artboardSection')); (dsc = new ActionDescriptor())
.putReference(sTT('null'), ref), dsc.putBoolean(sTT('below'), true)
ds
...
Translate
LEGEND , Jul 27, 2021 Jul 27, 2021

Yes it can be triggered automatically, but better if I tell you how to do it manually:

Save the code in belowArtboard.jsx file and copy it to 'Presets/Scripts' of your Photoshop folder. Relaunch Photoshop and from 'File / Scripts' menu select 'belowArtboard' item, but only when you have open document. Surely you can bind some shortcut to item from menu.

Translate
Adobe
Community Expert ,
Jul 27, 2021 Jul 27, 2021

You could use the keyboard shortcut Ctrl + [ (PC) / Command + [ (macOS) to move the new artboard down. The modifier plus the left bracket moves a layer or artboard down. The modifier plus the right bracket moves a layer or artboard up.

Translate
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 Beginner ,
Jul 27, 2021 Jul 27, 2021

Thanks! I wasn't aware of that shortcut. Appreciate your help. 

Translate
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
LEGEND ,
Jul 27, 2021 Jul 27, 2021

When you want to add new artboard while the other artboard is selected and you want it was added below currently selected artbord, make sure the selected artboard is collapsed (so not like on your screenshot where it's expanded). Same for selected layerSet, freely for selected layer. Then use below script:

 

sTT = stringIDToTypeID; (ref = new ActionReference())
.putClass(sTT('artboardSection')); (dsc = new ActionDescriptor())
.putReference(sTT('null'), ref), dsc.putBoolean(sTT('below'), true)
dsc.putString(sTT('name'), 'Artboard'), executeAction(sTT('make'), dsc)

 

Translate
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 Beginner ,
Jul 27, 2021 Jul 27, 2021

Thank you! I'm not familiar with using scripts but assuming I figure this out, would I execute this from the File > Scripts menu or would it happen automatically when I create a new artboard?

Translate
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
LEGEND ,
Jul 27, 2021 Jul 27, 2021

Yes it can be triggered automatically, but better if I tell you how to do it manually:

Save the code in belowArtboard.jsx file and copy it to 'Presets/Scripts' of your Photoshop folder. Relaunch Photoshop and from 'File / Scripts' menu select 'belowArtboard' item, but only when you have open document. Surely you can bind some shortcut to item from menu.

Translate
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 Beginner ,
Jul 27, 2021 Jul 27, 2021

That works from the File > Scripts Menu. Thanks for your help! Is there a way to relate that to the flyout layers menu option? Or assign a shortcut key to it? 

Translate
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
LEGEND ,
Jul 27, 2021 Jul 27, 2021

Like said, use 'Edit / Keyboard Shortcuts', then in the File find it and assign the shortcut.

Translate
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 Beginner ,
Jul 27, 2021 Jul 27, 2021

Perfect, thank you again for your help. This is super helpful to speed up my workflow.

Translate
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
LEGEND ,
Jul 27, 2021 Jul 27, 2021
LATEST

Probably you were looking for non-scripting solution.

Anyway mark as correct all those you'll find useful 😉

Translate
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