is now part of CreativePro.com!

Tip of the Week: Starting a Document on a Left-Hand Page

5

This InDesign tip was sent to Tip of the Week email subscribers on February 21, 2019.

InDesignSecrets Tip of the Week

Sign up now and every week you’ll get a new tip, keyboard shortcut, and roundups of new articles, plus exclusive deals sent right to your Inbox!

Just scroll down to the bottom of this page, enter your email address, and click Go! We’ll take care of the rest. Now, on with the tip!


Want to change your document so it starts on a left-hand page (so that the first two pages make a two-page spread)? One way is to double-click the little triangle over the first page in the Pages panel,

and set its page number to 2 (or any other even number).

David Blatner is the co-founder of the Creative Publishing Network, InDesign Magazine, CreativePro Magazine, and the author or co-author of 15 books, including Real World InDesign. His InDesign videos at LinkedIn Learning (Lynda.com) are among the most watched InDesign training in the world.
You can find more about David at 63p.com

Follow on LinkedIn here
  • Qing Youguo says:

    Hi Blatner, try a script to do it:

    if(app.documents.length !== 0){
    app.doScript(function() {
    try {
    var d = app.activeDocument;
    p1 = d.pages[0];
    p1.appliedSection.continueNumbering = false;
    p1.appliedSection.pageNumberStart = 2;
    d.spreads.everyItem().allowPageShuffle = false;
    p1.appliedSection.pageNumberStart = 1;
    } catch (e) {}
    }, ScriptLanguage.JAVASCRIPT, undefined, UndoModes.ENTIRE_SCRIPT, “FirstPage_LeftHand”);
    }

  • Max Castillo says:

    I think you can achieve this by selecting pages and deselecting “Allow Selected Spread to Shuffle” in the Pages Panel flyout menu. Then you can move pages into any spread configuration you like without renumbering.

  • >
    Notice: We use cookies on our websites to give you a great online experience. If you keep browsing, we'll assume you're ok with this. For more information, see our privacy policy. By closing this banner, you agree to the use of cookies.I AGREENo