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

how rezise all documents in book indesign

Community Beginner ,
Feb 12, 2024 Feb 12, 2024

Copy link to clipboard

Copied

I have an indesign book with 32 documents, where each document is a chapter. The documents were all in a size of 16 x 23 cm but now a new publisher has asked to change the size to 15.24 x 22.86 cm. How can I change all documents within the indesign book at once? Do you have a script for this?

TOPICS
Scripting

Views

202

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

Guru , Feb 12, 2024 Feb 12, 2024

Let's try to run this simple script from the batch processor:

 

main();

function main() {
	var doc = app.activeDocument;
    doc.adjustLayout( {width:'15.24cm', height: '22.86cm'} );
}

 

Like so:

Screenshot 2024-02-12 at 14.46.29.png

Besides width and height, you can use other parameters:  bleedInside, bleedTop, bleedOutside, bleedBottom, leftMargin, topMargin, rightMargin, bottomMargin. Check out the adjustLayout method for details.

 

— Kas

 

Votes

Translate

Translate
Guru ,
Feb 12, 2024 Feb 12, 2024

Copy link to clipboard

Copied

Let's try to run this simple script from the batch processor:

 

main();

function main() {
	var doc = app.activeDocument;
    doc.adjustLayout( {width:'15.24cm', height: '22.86cm'} );
}

 

Like so:

Screenshot 2024-02-12 at 14.46.29.png

Besides width and height, you can use other parameters:  bleedInside, bleedTop, bleedOutside, bleedBottom, leftMargin, topMargin, rightMargin, bottomMargin. Check out the adjustLayout method for details.

 

— Kas

 

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 Beginner ,
Feb 12, 2024 Feb 12, 2024

Copy link to clipboard

Copied

LATEST

you saved days of work. Very, very grateful indeed.

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 ,
Feb 12, 2024 Feb 12, 2024

Copy link to clipboard

Copied

You also have the option to export to pdf and change the page size in Acrobat using a preflight profile. Tools> Print Production> Preflight> Fixups.

Note, you can duplicate an existing preflight profile using the "Options" menu, then edit it to include the desired settings.

scale to specific size.png

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