InDesign won't impose pages!?!

Ask a Question related to Adobe Indesign Windows, Design and Development.

  1. #1

    Default InDesign won't impose pages!?!

    I am considering switching to ID but have run into what I think is a major roadblock. We use Pagemaker 7.0 and produce books with a large number of pages. PM will automatically produce printer's spreads easily but my understanding is that ID will not. What is the story?
    Thanks in advance.
    Sandra_Niemann@adobeforums.com Guest

  2. Similar Questions and Discussions

    1. Can someone tell me how to impose Multiple-page PDF into (Booklet/Signature) using javascript?
      Hi, I am using the professional version of Acrobat 6.0 from a Windows XP machine. Although, there are many products which can impose PDF...
    2. Indesign document prints pages edges. Why?
      I received an indesign (cs2) document of a book in order to make another book in the same series with the same styles etc... When I printed it, I...
    3. Inbooklet, Imposer Pro incorrectly impose across spine image.
      To make the explanation short, please take a look of these files, they are around 1 meg in size each. 1) a 12 A4 pages Indd file...
    4. Inserting pages throws off layout - Indesign CS
      I'm working on a 60-page document in Indesign CS (Pagemaker edition with plug-in pack). Whenever I insert a new page in the document, it throws off...
    5. Indesign document A5-size 16 pages
      Hi, Can anyone tell me how to make a document, 16 pages in A5 size, which can be printed two pages next to one another at A4 (= double A5),...
  3. #2

    Default Re: InDesign won't impose pages!?!




    [email]Sandra_Niemann@adobeforums.com[/email] wrote in
    news:3bb3c172.-1@webx.la2eafNXanI:
    > I am considering switching to ID but have run into what I think is a
    > major roadblock. We use Pagemaker 7.0 and produce books with a large
    > number of pages. PM will automatically produce printer's spreads
    > easily
    Please delete "easily" and never consider using "consistently" or
    "quickly" in athat sentence.
    > but my understanding is that ID will not. What is the story?
    Someone lied to you. IndyCS ships with a limited version of something
    that's a lot closer to a real imposition plugin.
    > Thanks in advance.
    You bet.
    Jerry_Farnsworth@adobeforums.com Guest

  4. #3

    Default Re: InDesign won't impose pages!?!

    PM's build booklet is junk for the most part. Just try to impose a book
    with graphics that span two pages.

    ID CS PM Edition ships with a limited edition version of InBooklet.
    There are also scripts available that are far superior to PM's build
    booklet that can be downloaded from the Adobe Studio Exchange.

    Bob

    Robert_Levine@adobeforums.com Guest

  5. #4

    Default Re: InDesign won't impose pages!?!

    > What is the story?

    The story is that beside the shipped plugin Jerry and Robert mentioned -
    which works for the basic semi-professional jobs - InDesign is targeted for
    the professional user that creates the job and doesn't think of the
    imposition because that is the work of the printing company - only they will
    really know how they do the imposition for their special printing machine,
    which marks they need and how many times they place one page on one spread.
    There are a lot of imposition programs out there, in every price range, so
    why should Adobe implement an own first class imposition engine?
    Maybe you should ask your printing partner if they can handle multi-page PDF
    files, and let them handle the imposition. As a book producer with the
    machines for such a printing task it is very likely they field a
    professional imposition software to do their job.

    Jens


    Jens Schulze Guest

  6. #5

    Default Re: InDesign won't impose pages!?!

    I just ran into this very issue. I'm trying to find this InBooklet plug-in. I am the designer AND often the printer. We have a Splash RIP and Xerox color copier which I use OFTEN for short run booklets. I've used PM's build booklet script for years to do these and was able to use it in ID2 in it's script folder just fine. I just upgraded to IDCS and dropped the script in it's script folder but it does not appear in the scripts window. Why has this been disabled? Did this InBooklet plug-in/script replace the old classic script? Where do I download the new script? I no longer use PM.

    I'm running
    10.3.3
    IDCS 3.0.1
    ID2.0.2
    PM 6.5.2
    Lantz_Newberry@adobeforums.com Guest

  7. #6

    Default Re: InDesign won't impose pages!?!

    Many older scripts don't work in ID CS. Either visit the [url]www.alap.com[/url]
    for a version of InBooklet or the Adobe Studio Exchange for a script.

    Bob

    Robert_Levine@adobeforums.com Guest

  8. #7

    Default Re: InDesign won't impose pages!?!

    If you want an excellent, low price(compared to others) imposition tool, get Quite Imposing plus. It is one of the best out there. I also hate it when people bring jobs in here to print and they try to do the imposing. I have to break it down to the size and start over.

    Bryce
    Bryce_Steiner@adobeforums.com Guest

  9. #8

    Default Re: InDesign won't impose pages!?!

    This JavaScript is what I use for Build Booklet.

    Warning. Work on a copy of your document. Use the created booklet for printing purposes only. Do not save the document back over your original.

    To install the script, copy and paste it to a text editor. Save it as plain text inside the Scripts folder in your Presets folder in your InDesign CS application folder. The name of the file must have the extension .js -- I call the file BuildBooklet.js

    As long as your document has a multiple of 4 pages, the script will work. It creates printer-spreads by shuffling the pages (unlike PageMaker's build booklet which shuffled the contents of the pages). To print your booklet or export it to PDF, check the Spreads option in the print/export dialogs.

    myPages = app.documents[0].pages;

    // Let's make sure that the pages are a multiple of four
    app.documents[0].documentPreferences.allowPageShuffle = false;

    if (myPages.length % 4 != 0) {
    alert("Document length isn't a multiple of four.");
    exit();
    }

    for (i=0; myPages.length>i; i++) {
    origSection = myPages[i].appliedSection;
    origNumbering = origSection.pageNumberStyle;
    origSection.pageNumberStyle = PageNumberStyle.arabic;
    pageName = myPages[i].name;
    sectName = origSection.name;
    if (sectName != "") {
    pageName = pageName.split(sectName)[1];
    }
    pageNo = Number(pageName);
    newSection = app.documents[0].sections.add(undefined, undefined, {pageStart:app.documents[0].pages[i], continueNumbering:false, pageNumberStart:pageNo, pageNumberStyle:origNumbering});
    origSection.pageNumberStyle = origNumbering;
    }
    app.documents[0].documentPreferences.allowPageShuffle = true;

    for (i=0; (myPages.length/2)>i; i++){
    if (i % 2 == 0) {
    app.documents[0].pages[myPages.length - 1].move(LocationOptions.before,app.documents[0].pages[i*2],BindingOptions.leftAlign);
    } else {
    app.documents[0].pages[myPages.length - 1].move(LocationOptions.after,app.documents[0].pages[i*2],BindingOptions.rightAlign);
    }
    }
    Dave_Saunders@adobeforums.com Guest

  10. #9

    Default Re: InDesign won't impose pages!?!

    For quick 2-up imposition, Mr. Saunders script is great. Thanks for the post.
    John_Brush@adobeforums.com Guest

  11. #10

    Default Re: InDesign won't impose pages!?!

    Thank you Robert I just downloaded InBooklet 3.0 from ALAP and tried the 15 day demo. Worked perfectly and is ordered.
    Lantz_Newberry@adobeforums.com Guest

  12. #11

    Default Re: InDesign won't impose pages!?!

    How do I use this script? I have Adobe InDesign CS for Mac OS 10.3.
    Steve_Dorsey@adobeforums.com Guest

  13. #12

    Default Re: InDesign won't impose pages!?!

    Stu Bloom "How di I use scripts?" 7/23/04 11:06pm </cgi-bin/webx?14@@.3bb52d27/0>
    Stu_Bloom@adobeforums.com Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139