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

artboard name as header of artboard?

New Here ,
Mar 07, 2017 Mar 07, 2017

Copy link to clipboard

Copied

is that possible without me manually doing each one? i have like 50 so i'd prefer not to...

so, i have my artboards, all pretty and done. i named each dartboard so when i export them as jpegs they are magically named correctly... now, i would love to set it up so that the name of the artboard is also the title (or header) of the page so that everything is labeled all pretty... can i do that?

TOPICS
Scripting

Views

1.0K

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
Adobe
LEGEND ,
Mar 07, 2017 Mar 07, 2017

Copy link to clipboard

Copied

You've posted in the Lounge (which is where you can "connect with your peers" from across all of Adobe's products for conversations that don't directly relate to help and support). Tell us what software you're using and we can get a moderator to move this thread to a product-specific support forum.

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
New Here ,
Mar 07, 2017 Mar 07, 2017

Copy link to clipboard

Copied

oops! sorry... I'm using illustrator cc

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
LEGEND ,
Mar 07, 2017 Mar 07, 2017

Copy link to clipboard

Copied

It's moved.

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 ,
Mar 07, 2017 Mar 07, 2017

Copy link to clipboard

Copied

Check in the Illustrator Scripting Forum. There is a link on the Overview tab.

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
LEGEND ,
Mar 07, 2017 Mar 07, 2017

Copy link to clipboard

Copied

It's moved again.

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
Valorous Hero ,
Mar 07, 2017 Mar 07, 2017

Copy link to clipboard

Copied

LATEST

Hello, try this!

#target illustrator

function test(){

     var doc = app.activeDocument, thisItem;

     for(var i=0; i<doc.artboards.length; i++){

          doc.artboards.setActiveArtboardIndex(i);

          doc.selectObjectsOnActiveArtboard();

          for(var j=0; j<doc.selection.length; j++){

               thisItem = doc.selection;

               if(thisItem.typename == "TextFrame" && thisItem.name == "header"){

                    thisItem.contents = doc.artboards.name;

               }

          };

     };

     doc.selection = null;

};

test();

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