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

Is it possible to preview half a spread?

Advocate ,
Mar 17, 2023 Mar 17, 2023

Copy link to clipboard

Copied

Just wondering...

It would be really helpful sometimes to be able to view the individual pages of a spread rather than the entire spread.

TOPICS
Feature request

Views

235

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

Community Expert , Mar 20, 2023 Mar 20, 2023

You might want to try the script at http://kasyan.ho.ua/indesign/all/split_spreads.html

 

Votes

Translate

Translate
Community Expert ,
Mar 17, 2023 Mar 17, 2023

Copy link to clipboard

Copied

Hi @turner111 , Not sure if this is what you want, but the layout’s window bounds are scriptable. This collapses the window to the active page (the page selected in the Pages panel):

 

 

var doc = app.activeDocument;
var r = doc.documentPreferences.pageWidth/doc.documentPreferences.pageHeight; //aspect ratio
var idcb = 90; //top pad
var idtb = 40; //left pad
var bpad = 110; //bottom pad
var sh = $.screens[0].bottom; 
var lwh = sh-(idcb+bpad); 
var lww = Math.round (lwh*r); 
app.activeWindow.bounds = [bpad, idtb, sh, lww]
app.menuActions.itemByID(118788).invoke();

 

 

Before and after:

 

Screen Shot 8.png

 

 

Screen Shot 9.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
Advocate ,
Mar 20, 2023 Mar 20, 2023

Copy link to clipboard

Copied

Hi Rob -

Not exactly... I'm trying to view half the spread as if it's an individual page, like the document isn't set up as facing pages.

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 20, 2023 Mar 20, 2023

Copy link to clipboard

Copied

LATEST

You might want to try the script at http://kasyan.ho.ua/indesign/all/split_spreads.html

 

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