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

Select first Artb then select Next Artb with a script?

Explorer ,
Sep 20, 2022 Sep 20, 2022

Copy link to clipboard

Copied

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

Views

160

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

Guide , Sep 20, 2022 Sep 20, 2022
var ABs = app.activeDocument.artboards;
var index = ABs.getActiveArtboardIndex();
ABs.setActiveArtboardIndex(index + 1);

Votes

Translate

Translate
Adobe
Guide ,
Sep 20, 2022 Sep 20, 2022

Copy link to clipboard

Copied

var ABs = app.activeDocument.artboards;
var index = ABs.getActiveArtboardIndex();
ABs.setActiveArtboardIndex(index + 1);

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
Explorer ,
Sep 21, 2022 Sep 21, 2022

Copy link to clipboard

Copied

LATEST

Thank you very much, it works perfectly. thank you

 

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