Page 1 of 1

PDF from InDesign Book

Posted: Mon Jul 01, 2013 11:04 am
by Terkelsen
Did anyone find a way to use the InDesign Configurator to create PDF of an InDesign Book? It seems that if you drop a package of an InDesign Book the resulting PDF contains only the first document of the book.

PDF from InDesign Book

Posted: Fri Dec 06, 2013 12:46 pm
by _Mich_
I have the same question/problem.



Does someone know if it's possible to create a certified pdf straight from the bookpanel?

PDF from InDesign Book

Posted: Mon Dec 09, 2013 5:35 pm
by freddyp
Here is a workaround. Create an "Export Book.jsx" file with the following lines:



$doc = app.open($infile);

var outPath = $outfolder+"/"+$doc.name.replace(".indb",".pdf");

$doc.exportFile(ExportFormat.pdfType, outPath, false, app.pdfExportPresets.item('[Smallest File Size]'));

$doc.close(SaveOptions.no);

$outfiles = [];

$outfiles.push(outPath);



You should modify the name of the PDF export preset on the third line to the one you want to use.



Use this script in the "Save as" - "Use script" property.



To avoid an error message in the "Open" - "Automatic", you set that also to "Use script" and you simply use an empty "Open Book.jsx" file.



Freddy