Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

151
Views
Converting Document Pages to Master Pages

I want to convert active document pages to master pages. I have learned how to convert by watching this video. https://www.youtube.com/watch?v=o71TyJ1IkNE Any possible way to convert using script.

Thanks in Advance.

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

This script makes a new master based on current page:

app.panels.item('$ID/Pages').visible = true;
app.menuActions.itemByName("$ID/Save as Master").invoke();

If you have several pages you can iterate them this way:

app.panels.item('$ID/Pages').visible = true;

var pages = app.activeDocument.pages;

for (var i=0; i<pages.length; i++) {
    pages[i].select();
    app.menuActions.itemByName("$ID/Save as Master").invoke();
}

It works for spreads as well. (InDesign CC 2017)

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!