Exporting Indesign book to single page PDFs

Hi,
I'm after a script that will enable me to select an entire Indesign book and export it as separate individual PDFs in one go.
I know there are a few scripts that either export the book into chapters or export the .indd files to separate single PDFs, but nothing that will do everything in one action. (i.e. take the book and output all the individual pages as single PDFs)
Has anyone written a script like this or is it easy to tweak an existing script?
BTW I have no scripting knowlege whatsoever.
Thank you again
Scott
These are the two scripts I was refering to:
http://www.kahrel.plus.com/indesign/pdf_individuals.html
http://indesignsecrets.com/page-exporter-utility-peu-5-script-updated-for-cs3.php

RichardM0701, are you the same person as scottbentley?
I fear your response doesn't make a lot of sense. The easiest way is to put your files into a book, which will not harm them. The easiest script is often no script at all.
I don't understand your comment about separate text boxes, files contain text boxes and definitionally multiple files means multiple separate text boxes.
I do not know what you are referring to with respect to the toc update, perhaps you could reference a particular command or script, or provide a screenshot.
It sounds like now you are interested in updating multiple tables of contents in a single fell swoop -- this would appear to have nothing to do with the original question. If that's the case, please start a new thread.

Similar Messages

  • Exporting a multipage InDesign document to single page PDFs but with unique filenames using scripts

    Hi,
    I'm using InDesign 5.5.
    My goal is to export a multipage InDesign file into single page PDFs but each single PDF must be uniquely named.
    For example;
    InDesignFileName_487275123.00.pdf
    InDesignFileName_734876882.00.pdf
    ...and so on.
    I've spent a great deal of time searching online and the closest I have found is  software called Output Factory which works fine.
    The way Output Factory works is by placing a script label within a textframe on the master page in InDesign. Then whatever is typed into the text frame on each the separate pages defines the file name of each separate page.
    However if I can solve this problem without any investment costs my boss will be very happy
    I found PEU5 which works great for exporting into single pages, it's now a case of naming each single PDF but I know nothing how about to create a script but I get the gist of what they do. My understanding is that a script could solve the second half of my problem.
    Can anyone help?
    Thanks.
    S

    Thanks Peter but but I don't think this is what I'm looking for.
    I did find this post http://forums.adobe.com/thread/841982 but I can't seem to get the script to work.
    This is the error message I get when I run the script... any ideas what I'm doing wrong?

  • I need help exporting pages newsletters as single page PDF's or as a .jpeg for an online photo book.

    need help exporting pages newsletters as single page PDF's or as a .jpeg for an online photo book.

    No same idea: 1. Look  2. Try.
    This is in Mavericks:
    Peter

  • Export single-page pdfs with page name

    I've been looking for a script that:
    - exports every page of an indesign file to a seperate single-page pdf (or other filetypes)
    - names the pdf with the name of a page -> this is the hard part to find
    The reason i could use it: i have a 200+ page file with productspecs. I would like to export every page with the correct productname. (extracting pdfs in acrobat is not a problem, but then i have to manually rename every file)
    I'm not sure how to name the pages, as it's not a function in indesign. Ideal would be to be able to "tell" indesign: this textframe = the pagename, so it wouldn't be necessary to label the page seperately.
    I'm not a scripter. I searched the forum and found some info on this already, but not a working script including automatic pagenaming.
    I did found an old post where someone points to such a script, but i can't find it:
    http://www.techplex.net/postsm40018_possible-to-name-pages.html#post40018
    Did anyone ever made/found/used such a script?
    (btw, a similar script for illustrator artboards would be very useful too!)
    Any help appreciated!

    scott zanelli made one years ago. does a fantastic job.
    http://indesignsecrets.com/page-exporter-utility-peu-5-script-updated-for-cs3.php
    Loic Aigon has written one...
    http://www.loicaigon.com/blog/?p=876
    as for illustrator artboards... don't know - have a look on the illustrator scripting forum.

  • AS) export single page PDFs from multi-artboards

    I'm not exactly sure where my new problem lies. I'm trying to save out single page PDFs from an Illustrator CS4 document with multiple artboards. Each artboard should become a PDF. I can get a multi page PDF, but when it saves single page files, I get white PDFs with error messages on them (I think it is saving .ai files with a .pdf extension).
    this is where I am now (simplified, of course):
    tell application "Adobe Illustrator"
    set docName to name of current document
    set itemNumber to 1
    tell application "Finder" to set fileLoc to path to desktop as string
    set pageCount to (count artboards in document docName)
    tell current document
    set allPlacedItems to placed items
    repeat with h from 1 to (count of allPlacedItems)
    set thisPlacedItem to item h of allPlacedItems
    tell thisPlacedItem to embed
    end repeat
    set allTextItems to text frames
    repeat with j from 1 to (count of allTextItems)
    set thisTextItem to item j of allTextItems
    tell thisTextItem to convert to paths
    end repeat
    end tell
    repeat with i from 1 to pageCount
    set pdfSaveOptions to {class:PDF save options, pdfXstandard:PDFX None, compatibility:Acrobat 6, preserve editability:false, generate thumbnails:false, optimization:false, acrobat layers:false, artboard range:i, view pdf:false, color downsampling:0, color resample:nodownsample, color compression:none, grayscale downsampling:0, grayscale resample:nodownsample, grayscale compression:none, monochrome downsampling:0, monochrome resample:nodownsample, monochrome compression:none, compress art:false, trim marks:false, registration marks:false, color bars:false, page info:false, page marks style:Roman, trim mark weight:trimmarkweight025, offset:6.0, bleed link:true, bleed offset:{0, 0, 0, 0}, color conversion id:none, color destination id:none, color profile id:include all profiles, trapped:false, font subset threshold:50.0}
    set pdfName to docName & "TEST" & itemNumber & ".pdf"
    set destFile to (fileLoc & pdfName) as string
    save document 1 in file destFile as pdf with options pdfSaveOptions
    set itemNumber to (itemNumber + 1)
    end repeat
    close current document without saving
    end tell

    // Save the artboards to PDF.
    var myDoc = app.activeDocument;
    var original_filename = myDoc.name.toString();
    // alert (myDoc.name.toString() )
    // Get the folder location
    var destFolder = Folder.selectDialog('Select the folder to save the PDF files to:');
    // Get the number of artboards to export from a dialogue
    var total =  myDoc.artboards.length
    //     Number.selectDialogue('Total Number of Files to be made')
    if (destFolder) {
         for (i=0; i<total; i++)
              var destFile = new File(destFolder+original_filename+"_"+i);          //     Assign incrementing filenames
              var pdfSaveOptions = new PDFSaveOptions();
              pdfSaveOptions.viewAfterSaving = false;          //     Don't want to see these fles in Reader
              pdfSaveOptions.SaveMultipleArtboards = true;
              var range = new String();
              range = (i+1).toString();
              pdfSaveOptions.artboardRange= range;     //     not Assign incrementing page range
              myDoc.saveAs (destFile,  pdfSaveOptions);     
    I've run this script on the 3 art board document the Adobe sample scripts create. It's a just different coloured star on each artboard.
    This script appears to work in as far as I get 3 files with just one artboard showing when I open the files in Adobe Reader. Problem is when I open them in AI, I can see all the artwork is still there and even more stranger is the fact that the numbers are still 1,2,3 whereas in Reader it's just page i showing as page 1 each time.
    This could be a problem when the application I'm writing generates an image structure from the files if it sticks the excess data onto the GPU (not sure if it will or not). If it includes all the data, also it just makes the Application footprint bigger by a 8 MB or so of unnecessary baggage. An issue for a 'light weight' app.
    I noticed the export ExportArtboardsPhotoshop.jsx script has this line:
    psdExportOptions.saveMultipleArtboards = true;
    It works in that context but in PDF context it only works in terms of what Reader shows not what exists in the files. Good one Adobe… Makes me wonder what the Multiple art boards method did before AI had multiple art boards. How was AI dividing the objects?!
    Also I really need a SaveAsCopy (non-existent I think) method or I'll have to keep reopening the original file and then doing SaveAs.
    Back to manual duplicating files in finder, batch renaming, opening them all and deleting excess. Or export to PSD and get my dimensions right or just oversized (I can always down sample in the app)…
    This is truly a painful exercise!

  • Indesign book files making a PDF with spreads????

    Hi, I am working with a book file but need to make a digital PDF with spreads. So the problem is obviously that I start with a right single page and finish with a left single page in each chapter which doesn't make a spread. Is there a way around this? (apart from copy and pasting the single pages at each beginning and ending together as spreads into an empty document and replacing these pages in the PDF)
    Thanks

    Re: Indesign book files making a PDF with spreads????
    When you make the pdf of the book from the book panel.
    Create a new document call it filenamespreads or something.
    Get the PDFplacer.jsx script http://indesignsecrets.com/placing-all-the-pages-of-a-pdf-inside-indesign.php
    Run a few pages to get the position right, then do the whole book.
    Export to pdf as spreads.
    It sounds longwinded but it isn't.
    @Eugene--
    This is the closest answer to solving my problem.
    To clarify, the reason I need spreads is NOT for final printing. Its for sending a reader proof to a client to send to someone for review. They need to see it as spreads to get a "feel" for the book. I feel like it should be possible to do this, easily, without too much stress in InDesign.
    I am going to try your solution but I am a newbie about using scripts in InDesign. Never done it before. I placed the script in the scripts folder and re-launched InDesign, but how do I launch the script?
    Thanks!
    Oh, and I should have specified before, I'm using CS2.

  • Place Single Page PDF Multi Times into a template

    Say for instance I have a Business Card 90 x 55 which needs to be placed on a 8up layout template ready for printing.
    How do I tell Indesign to place the single page PDF 8 times.
    Or maybe this way: Is there a way of telling Indesign to export a single page 8 times to the same pdf file. Size is not an issue for the PDF as it is only a tempary file.

    I have set up a template with Place holders for the pdf to be placed in, then to place the pdf all i have to do is click inside each of the place holders and wala they are there.
    So on my 8up template i have all my required items ie: colour bars, crop marks, and guides all on their own layers, and the 8 boxes on their own layer, I import the PDF loading my curser, click on a box and artwork is placed exactly where I need it to be.
    You are right about step and repeat being one way of doing this, but I think my way if I can work it out will be even faster, no mesurements to remember no typing just 8 quick clicks.
    If by any chance I need more then 8 up adding a page is no problems the boxes are on the master page and I just release the objects on the artwork layer and its ready to go again as many times as I need it.
    What do you think of the idea to Print to PDF is this a lower quality way of making the PDF.

  • Interactivity in Book with single page documents

    I'm currently working with a book, with single page documents.
    I'm trying to use the interactivity features for buttons in CS5.5
    I was able to get pages 2-5 to link to the first page, which we have set up as the table of contents.
    However, I'm having issues trying to link button from the 'Table of Contents' to the single pages of the book.
    For example, I have a button that, once click will take you to page 2, and another button that will take you to page 3 once clicked.
    Once I export to an Interactive PDF, the buttons on the 'Table of Contents' do not work.
    However the buttons on pgs. 2-5, that go to the 'First Page' work.
    Any suggestions/tips on how to get buttons to work on the first page, that will navigate you to the specified page?
    Thanks!

    Book settings always trump File settings, so make certain that in your book file Numbering and Pagination settings do not allow any "Read from File" settings.
    What's the Numbering setting for Page in the book files for the chapters? Typically, you should have this set to "Continue Numbering from Previous Page in Book" for all but the first chapter, if you want continuous numbering.
    Also make certain that if you want continuous pagination, that you don't have any chapters forced to start on a Right-hand page with the previous chapter also ending on a Right page. This will force FM to add an extra (Left) page and also bump up the page numbering.

  • Setting up new book with single pages but facing preview and breaking up pages at print time

    I have a new book to design.  Last time on a similar project (with 100 pages) I had a massive cry at print time as the printer wanted single pages with bleeds. I had set up the book with facing pages.  When I unchecked to non facing pages I lost all my formatting and margins...   I spent hours fixing this up.... I do need to show double spreads to the client as we go along and I do want to work in a mode that shows both left and right next to each other (ie in a book format).  What do you suggest? I have been looking at setting up as single pages side by side and then at print time I think I can move all my right hand pages over with the break up page function and then fix up all my bleeds manually.? thanks in advance

    lisalip schrieb:
    no my printer needs 5mm bleed all around for the books I am doing and wants single pages with crops and bleeds
    I will check the link and hope ok
    I do prefer to design with facing pages but as I said it was a nightmare for me last time when setting for print
    You confuse single pages with non facing document.
    Every page has to be its own page. When your document has facing pages you have to set up a document with facing pages. There is no way around. Otherwise you will have problems with the left and the right page number and a lot of other issues.
    If the printer needs single pages you have to export your document as PDF with single pages. That means deactivate the spread option in the PDF export dialog.
    Here I have an example:
    Situation:
    In the 2 spreads on the top you don't have a problem when you export to a single page PDF. The bleed is taking material from the opposite page. It is ok and not disturbing.
    But the bottom spread is different. Here you see a design break. It would be disturbing, if you take material from the opposite page. In many cases you would not realize it, but there are several situation where it might be a problem like glue or o-wire bindings where the bleed might become visible.
    So you have to go to the page panel.
    You have to select the spread first, then you go to the fly-out menu and select don't "allow selected spread to shuffle" pages. The numbers of the spread will appear in rectangle brackets.
    Now you can drag the right (or left) page away from their counterpart on the spread. First you have to deselect any pages from that spread, so you can click on any thumbnail of any other page of any other spread. Then click on the right page of that spread. Only this pages has to be selected.
    You see the icon of your curser changes as it is in the image above. Drag it as far as you see a thick vertical line. Then release sthe curser.
    As result you have now seperate pages. You need only to extend the image, here on page 6. I have taken an image which is large enough, so I need only to move the image frame edge to the bleed.
    When I export a single page PDF, as your printer wants I don't get problematic bleed from the opposite page.
    You can download this example as IDML file. https://www.dropbox.com/s/qnotrl1ihe7umh7/SinglePages-Spread%20Ordner.zip

  • Need script to place multiple single page pdfs in ID pages

    Does anyone know of a script that would place a whole folder full of single page pdf files into an indesign document one per page, alphabetically by pdf file name, and ideally add new pages as needed. The last part is optional, as the ID document could already have the required number of pages, all using the same master page with the the picture frame already in place.
    In my current project, the pdfs are all the same size as the ID document page size.
    This would be along the lines of the scripts that place multipage pdfs, but for single page ones. I have tried first creating a multipage pdf by inserting a folder full of single page pdfs at the end of an initial pdf. Acrobat 8 pro does this very well indeed, but selects the pages from the source folder in random order. I need them in alphabetical order.
    Thanks for any insight,
    Al

    For this project I could equally well use a script that would place or re link to a new pdf in a single page ID document, print device independent postscript with some sort of unique or sequential filename, and repeat the process for a whole folder of source pdf files. No new pages need to be added, and the new pdf could replace the prior one.
    What I am after is a device independent ps file for these pdf files. The ones produced by batch processing from Acrobat 8 Pro do not offer enough control, as in that method I would need *only* the black separation.
    Thanks,
    Al

  • Creating single page pdfs from a brochure designed in spreads format

    Hi there,
    So I've been asked to take a brochure that is in spreads, and save each panel as a single page pdf. So basically, in document setup, the page size is 17.75 x 8.5).  There are four panels, each panel is roughly 4.3708 x 8.5. The problem is, each panel was not created as a single page in indesign...instead, it's set up as a 17.75 x 8.5 document and the panels are created within that document size.
    I guess I wanted to find out if there is an efficient way of creating these single panel pdfs from what I've been given.
    Anybody know?

    It's either copy/paste into a properly laid out facing pages document (the best choice if it will need editing in the future), or place the pages, each one twice, into a facing pages pages doc and crop the wrong half off each page. In either case, you'll need to rearrange the pages into readers' spreads.

  • Multi-page PDF to multiple single-page PDFs

    Hello, I'm wondering if anyone out there knows a way, if you have a multi-page PDF, to export each individual page to it's own single-page PDF.  Is there a way to do this in Acrobat?
    Or is there a way in Microsoft Word using Adobe's PDF print driver, to print each page to it's own single-page PDF?
    Ultimately I want to run a batch process on each PDF page in Illustrator, but for me to do that each page needs to be it's own PDF.
    Thanks for any help!!!!

    Something that may help -
    With a multi-page PDF open in Acrobat Pro; select Document > Extract Pages
    In the Extract Pages dialog you can select "Extract Pages As Separate Files".
    This will provide you with a PDF file for each page of the source PDF file.
    Additional options are also possible.
    In a thread at AUC, Thom Parker identifies these.
    http://www.acrobatusers.com/forums/aucbb/viewtopic.php?id=4703
    Be well...

  • Can't send single-page PDF files to other apps

    When someone emails me a PDF with multiple pages, the files appears as an attachment in the email and I have to click on it to view it.  Once I click on it, I am taken to a full screen view of the PDF and I can scroll to see the other pages.  When I tap the screen, the square with an arrow point up appears in the upper right corner.  When I touch the square with the arrow, I am given the option to send the PDF to Messages, Mail, etc.  I also have a app on my iPad called PDF Expert and I can send it to this app as well.  PDF expert lets me draw on the PDF so I can sign documents. 
    So here's the problem.  When a single-page PDF is sent to me, it appears in-line, in the email body itself.  It does not appear as an attachment.  When I click on it, instead of it taking it to another page where I can view it full screen, it gives me the option to Select or Copy.  This doesn't help me at all.  I have had this problem with images showing up inline in the email body as well. 
    Being able to see the attachment inline is a nice idea, but there absolutely needs to be a way to send it to another page to be viewed full screen and to give the option to send it to other apps.

    I have been having the same problem... Here is how I solved it.
    I removed all graphics from my automatic email signature line and then it worked!!!! For some reason, the ipad mail app cant handle a graphic signature block and an attachment.
    Good Luck!

  • Combining Contents of 2 PDFs into a single page PDF

    I need to combine elements of two different PDFs into one, single page PDF.   
    One PDF is Template of sorts with headers to be edited, the other PDF is a non-ocr scan that includes text and images.   
    I've found no way to copy and paste on a single page b.t two PDFs. I've tried pasting into an inserted page and then dragging it up or cutting and pasting within the document (with the intention of deleting the unneeded second page) with no luck.
    This seems like it should be such a no brainer. Open 1st PDF, Open 2nd PDF, make selection Ctrl C, go to 1st PDF, place cursor where desired, Ctrl V.   But it doesn't work at all in an intuitive way like any other document program where you can cut and paste with ease b/t documents and even b/t programs.
    So instead, I've copied the part of the image PDF I want into the original word doc of the template, then created a PDF from that.  However, when I try to tell Acrobat to make the entire document OCR, it tells me it can’t b/c it contains renderable text (the header information, I’m assuming).  If I run the OCR on a PDF containing just the image, it does it no problem.   
    What is the best way to bring these two documents together in way that results in a single page, completely searchable PDF? 

    Unfortunately, another $700 software purchase is not in the cards and I can’t wrap my mind around why it should be necessary.  It seems so nonsensical to me that Acrobat has all these advanced functions for editing, combining, making portfolios etc., yet can not perform the simple task of cutting and pasting between two documents.
    While Adobe support was putting me on hold, I doodled up some generic sample documents that I could upload here to illustrate the problem. Hopefully, someone can play with these and give me a workable solution.
    The first PDF, Original Acme Clip, represents the file that is provided to me by our clipping service. They cut the item out of a magazine, put the customized info into their standard template in whatever word processing program they use, printed it out, pasted the magazine clip to that page and then scanned the hard copy to PDF-as an image only PDF, it is not optimized for optical character recognition and is not searchable.
    The second PDF, Final Acme PDF, represents the file that our workflow eventually ends up as-a PDF containing only the info we want, formatted as we want, in which both the headers and clip content are searchable. To get there currently, we print out the Original ACME Clip, type the relevant info into the headers of a Word template that includes our logo and standard footer, print out the Word template page, manually cut out the scanned image from the PDF, and paste it onto the template paper.  The resulting paper is scanned into the Final Acme PDF and OCR is run on the whole thing to make it all searchable.
    What we’d like to do is skip all the printing, and manual cutting and pasting. Any and all suggestions for work in Acrobat 9 Pro to do this would be gratefully appreciated!

  • In the mail app why can't I see single page pdf attachment created by SSRS R2 on iPad with iOS 8?

    We have reports that are generated using Sql Server Reporting Services 2008 R2 and are distributed to users by email as a PDF attachment.  This worked fine in iOS 7 but ever since users have updated to iOS 8 the single page PDF is missing even though it has the paper clip icon indicating there is an attachment with the email.  If the PDF is multiple pages then the PDF icon would appear but there seems to be a problem with the single page pdf that is embedded on the mail app in iOS 8.
    We've recreated this issue creating a test report and sent it to iPads that have iOS 7, iOS 8 using different models of iPads (2, 3, 4) and the ones that have iOS 7 work fine.  Only the ones that have iOS 8 have this issue.  Also tried changing the format of the file to a PNG, TIFF and again the same results on the iPads with iOS 7 display it correctly.  Another test we did was send the PDF to our personal email and open it on our home iPads we were not able to see the single page PDF on iOS 8.  Looking at the headers of the email I can see the that the Content-Type is multipart/mixed.  When the original is forwarded to oneself on the iPad the attachment is included but the Content-Type is application/ms-tnef.

    Can you check your email headers, I have also noticed this for reports that are generated using Sql Server Reporting Services 2008 R2. It could to be due to the Content-ID header I believe.
    As a single page attachment on iPad will try and display inline, the Content_ID header is possibly affecting this and showing a small blank square as the image instead. Although this isn't defined as inline within the Content-Disposition header and will appear as an attachment on Outlook.

Maybe you are looking for

  • Need to understand Struts Framework

    Greetings everyone, I am trying to understand how the entire Struts Framework works. If I am running tomcat, is copying and pasting the WAR file into webapps directory the only way to install struts? Since I am new to struts and was trying to underst

  • Extension Manager in 10.1.3

    I see that the Extension Manager has been modified in 10.1.3. Till 9.0.5.2 I could disable or enable individual extensions to my will depending on what I use frequently (as sepaarte profiles). But I now see the core features come as two groups only J

  • Illegal hardware instruction

    Hi, I have installed solaris 10 x86 on my laptop. Every thing was fine untill I tiried to start java desktop. Actually, any gnome based application produces illegal hardware instruction and core dump. My machine iz PIII 700 Mhz, 512 Mb RAM, Fujitsu-S

  • Please help me set my classpath

    hi: I install the jdbc driver of Microsoft for sql server2000.I set the classpath as the documents say. I rewrite the program and want to use the jdbc driver ,Add the "import javax.sql.*; import javax.naming.*;". when i run the program .the debug tel

  • Accounting effect in batch adjustment using MI10 Transaction

    Hello there is a difference between physical stock & actual stock in the SAP system, so i m adjusting the stock using MI10 transaction so can anyone tell me is it right or not? & what is the accounting effect if i m doing this, or i have to use MI01,