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

How to add frame on each page

Contributor ,
Jun 23, 2019 Jun 23, 2019

Hi experts,

my script like this:

var myDocument = app.activeDocument;

var myPage = myDocument.pages.everyItem().getElements();

var myTextFrame = myPage.textFrames.add();

myTextFrame.geometricBounds = [0, 0, 280, 210];

myTextFrame.contents = "This is some example text."

but not working, could some one please tell me to fix it.

thanks

regard

John

TOPICS
Scripting
630
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

Advisor , Jun 23, 2019 Jun 23, 2019

John,

try looping through the documents pages to add the text frames.

Also you can look at this post how script create text frame ?  as it has a lot of useful information.

var myDocument = app.activeDocument;

for(var p=0; p<myDocument.pages.length; p++){

var myTextFrame = myDocument.pages

.textFrames.add();

myTextFrame.geometricBounds = [0, 0, 280, 210];

myTextFrame.contents = "This is some example text.";

}

Regards,

Mike

Translate
Advisor ,
Jun 23, 2019 Jun 23, 2019

John,

try looping through the documents pages to add the text frames.

Also you can look at this post how script create text frame ?  as it has a lot of useful information.

var myDocument = app.activeDocument;

for(var p=0; p<myDocument.pages.length; p++){

var myTextFrame = myDocument.pages

.textFrames.add();

myTextFrame.geometricBounds = [0, 0, 280, 210];

myTextFrame.contents = "This is some example text.";

}

Regards,

Mike

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
Contributor ,
Jun 24, 2019 Jun 24, 2019

thank you mike

thank so much

John

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 17, 2019 Sep 17, 2019
LATEST

var myDocument = app.documents[0];//app.activeDocument not working on indesign Server

for(var i=0;i<myDocument .pages.length;i++)

{

myDocument .pages[i].textFrames.add();

}

 

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