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

Select first Artb then select Next Artb with a script?

Explorer ,
Sep 20, 2022 Sep 20, 2022

Guys is there any way to select the next Artboard like (the select next object below) with a script?


Example :
if i have Artb 1 selected then i want to select the next Artb which is Artb 2 then Artb 3 then Artb 4.

i want this script to use it in an action for like 200 pages.

erats.PNG

TOPICS
Bug , Feature request , Performance , Scripting , Tools
257
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 1 Correct answer

Guide , Sep 20, 2022 Sep 20, 2022
var ABs = app.activeDocument.artboards;
var index = ABs.getActiveArtboardIndex();
ABs.setActiveArtboardIndex(index + 1);
Translate
Adobe
Guide ,
Sep 20, 2022 Sep 20, 2022
var ABs = app.activeDocument.artboards;
var index = ABs.getActiveArtboardIndex();
ABs.setActiveArtboardIndex(index + 1);
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
Explorer ,
Sep 21, 2022 Sep 21, 2022
LATEST

Thank you very much, it works perfectly. thank you

 

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