Ask a Question related to Adobe Indesign Windows, Design and Development.
-
Sandra_Niemann@adobeforums.com #1
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
-
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... -
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... -
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... -
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... -
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),... -
Jerry_Farnsworth@adobeforums.com #2
Re: InDesign won't impose pages!?!
[email]Sandra_Niemann@adobeforums.com[/email] wrote in
news:3bb3c172.-1@webx.la2eafNXanI:
Please delete "easily" and never consider using "consistently" or> 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
"quickly" in athat sentence.
Someone lied to you. IndyCS ships with a limited version of something> but my understanding is that ID will not. What is the story?
that's a lot closer to a real imposition plugin.
You bet.> Thanks in advance.
Jerry_Farnsworth@adobeforums.com Guest
-
Robert_Levine@adobeforums.com #3
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
-
Jens Schulze #4
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
-
Lantz_Newberry@adobeforums.com #5
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
-
Robert_Levine@adobeforums.com #6
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
-
Bryce_Steiner@adobeforums.com #7
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
-
Dave_Saunders@adobeforums.com #8
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
-
John_Brush@adobeforums.com #9
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
-
Lantz_Newberry@adobeforums.com #10
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
-
Steve_Dorsey@adobeforums.com #11
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
-
Stu_Bloom@adobeforums.com #12
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



Reply With Quote

