Placing multi page .indd files

Hi, I found out recently you can now place .indd files in other .indd files. Awesome! However, it seems like you can only place stuff from the first page of the .indd file you're placing. Is this true? Can you place content from the second page or after in the document?

Same as with PDFs, e.g., either check "Show Options" when selecting the file, or press-and-hold the Shift key whilst clicking on Open.
You will get a dialog, showing previews per page and asking what you want to import.

Similar Messages

  • Getting Page Count for a Multi-Page PDF file using Illustrator script?

    Does anyone know how to get the page count of a multi page PDF file?  I know you can then open each page using the PDFFileOptions (pagetoopen).  But I need to know up front how many pages there are to loop thru to open each page and process each page.
    Any Ideas?

    This script i did for photoshop:
    OK so lets do it working on WIN and MAC without any shell script.
    This solution is not the best but its working.
    I used Try catch to solve it.
    Only issue is that you should at least somehow know how many pages you expect in pdf.. this mean if you are working with books or flyers...
    Then set the maxPagesCount to that number.
    I am working with pdfs with max 20pages.. so i start open the 20 then 19 then 18 and when i am success i know the amount of pages.
    Its not the quicker way but its usable.
    var maxPagesCount = 20;
    var actPagesCount = maxPagesCount;
    var opts1 = new PDFOpenOptions();
    opts1.usePageNumber = true;
    opts1.antiAlias = true;
    opts1.bitsPerChannel = BitsPerChannelType.EIGHT;
    opts1.resolution = 10; //it will load faster the test page
    opts1.suppressWarnings = true;
    opts1.cropPage = CropToType.MEDIABOX;
    myFunction = function () {
      try { 
          app.displayDialogs = DialogModes.NO;
          var fileList = openDialog();
          for (i = 0; i < fileList.length; i++) {
            actPagesCount = maxPagesCount;
            getPagesCount(fileList[i],maxPagesCount);
            alert(actPagesCount);
      } catch (exception) { 
        alert(exception);
    getPagesCount = function (checkFile, lastPageID) {
      try {          
        for (var checkPage = lastPageID; checkPage > 0; checkPage--) {
          opts1.page = checkPage;                    
          var docRef = open(checkFile, opts1, false);                  
          docRef.close(SaveOptions.DONOTSAVECHANGES);                  
          actPagesCount = lastPageID;                  
          return;                  
          checkPage=0;                              
      } catch (exception) {
        // Look for next page        
        checkPage--;        
        getPagesCount(checkFile,checkPage);

  • Converting Multi page .eps files to .pdf Preview is broken

    I have in the past used Preview to convert multi page .eps files into
    .pdf files. Since I have upgraded to Tiger 10.4.3 Preview will no longer work.
    Does anyone know how to uninstall Tiger 3.03 version and go back to 2.xx version? Are there any utilities to do this for me? On my older mac (9.x) I have Adobe distiller.
    Thanks
    Max

    I have just copies the older version of Preview onto this machine and am running 2.10 of Preview to solve this problem.
    Max

  • ___When I have a multi page Ai file and 'Save as', it saves more than just the page I specified

    When I have a multi page Ai fil e (50 pages) and 'Save as', it saves more than just the single page I specified (ie. Range 1-1)... it saves all 50 over again? How do I just save 1 of the 50?

    Just answered my own question - if I use 'Save a copy' it works... must be a glitch

  • Can't open multi-page illustrator file

    I'm on a mac. I have Illustrator CC. I'm trying to open a multi-page .ai file, and I get the dialogue that usually happens when you're trying to open a non-illustrator multi-page pdf. :
    here's a screenshot:
    http://grab.by/yNEg
    when I do a get info on the file, it says Saved As v.15 Created by v.15.0.0
    How can I open this file and get all the artboards without running a script? I want to retain all the text formatting.
    thanks!

    That usually happens when files get corrupted and only the PDF part of the file is still intact.
    Did you perhaps save it directly to or open it directly from a server?

  • Create a single tall image from a multi-page pdf file

    I would like to take a multi-pake pdf file, and have all of the pages "appended" from top to bottom edge to create a single tall image. I am a teacher, and I currently do this by hand, I am then able to annotate the entire page and croll down an entire document inside of Photoshop.
    Here is an example: I have a pdf with 4 pages. Currently I open the pdf in PS, I end up with 4 images; I adjust the vertical canvas size of one of the images to be 4 times it's original size, then one-by-one I copy the contents of each image to that new tall image and move that layer vertically below the previous one. So the result is say a 1024x6400 pixel image.
    I would like to be able to just open the pdf with a script and get this all done in one step.
    Any help is appreciated.

    Thanks again c.pfaffenbichler. I had most of it worked out in my own way before you got back to me, but I wasn't able to get the final naming part down.
    Like I said, I am a math teacher, and I use photoshop as my whiteboard, and draw with a graphics tablet. So I can print to pdf from any program, now I can import any document into photoshop basically to write on it. So this is wonderful. I have never seen another teacher use PS as a whiteboard in class in this way, so I am most likely the only person in my county or state that would need such a script.
    After I got everything worked out, I added some things to the script. Some of my colleagues will use my files as a whiteboard if I send it to them as a tall single page pdf that they can scroll down and write over; so they don't need photoshop. So I have scripted in the saving of that pdf as well. Here are my changes; most of what I changed is in the section commented MY WORK.
    // opens all pages of pdfs cropped to trimbox with set settings and arranges them;
    // 2011, use it at your own risk;
    #target photoshop
    // dialog for pdf-selection;
    var theFiles = app.openDialog();
    if (theFiles) {
         for (var m = 0; m < theFiles.length; m++) {
              var theFile = theFiles[m];
              if (theFile.name.slice(-4) == ".pdf") {
                   var thePdf = openMultipagePDF(theFile);
              else {alert (theFile.name + " is not a pdf-file")}
    ////// function to open all pages of a pdf //////
    ////// influenced by PlaceMultipagePDF.jsx //////
    function openMultipagePDF(myPDFFile) {
    // pdf open options;
         var pdfOpenOpts = new PDFOpenOptions;
         pdfOpenOpts.antiAlias = true;
         pdfOpenOpts.bitsPerChannel = BitsPerChannelType.EIGHT;
         pdfOpenOpts.cropPage = CropToType.MEDIABOX;
         pdfOpenOpts.mode = OpenDocumentMode.RGB;
         pdfOpenOpts.resolution = 247.8;
         pdfOpenOpts.suppressWarnings = true;
         pdfOpenOpts.usePageNumber  = true;
    // change pref;
         var originalRulerUnits = app.preferences.rulerUnits;
         app.preferences.rulerUnits = Units.PIXELS;
    // suppress dialogs;
         var theDialogSettings = app.displayDialogs;
         app.displayDialogs = DialogModes.NO;
    // iterate through pages until fail;
              var myCounter = 1;
              var myBreak = false;
              var theWidth = 0;
              var theHeight = 0;
              while(myBreak == false){
                   pdfOpenOpts.page = myCounter;
                   try {
                        var thePdf = app.open(myPDFFile, pdfOpenOpts);
                        if (thePdf.width > theWidth) {theWidth = thePdf.width};
                        var offset = thePdf.height;
                        thePdf.layers[0].name = myPDFFile.name+"_"+myCounter;
                        if (myCounter == 1) {
                             var theFile = thePdf
                        else {
                             thePdf.layers[0].duplicate(theFile, ElementPlacement.PLACEATBEGINNING);
                             thePdf.close(SaveOptions.DONOTSAVECHANGES)
                        myCounter = myCounter + 1;
                        var theLayer = app.activeDocument.activeLayer;
                        theLayer.translate(0, theHeight);
                        theHeight = theHeight + offset;
                catch (e) {myBreak = true};
    // reset dialogmodes;
    app.displayDialogs = DialogModes.ERROR;
    app.preferences.rulerUnits = originalRulerUnits;
    // resize canvas;
        theFile.resizeCanvas(theWidth, theHeight, AnchorPosition.TOPLEFT);
    //MY WORK
    // merge visible layers (even if there is only one layer)
         try     {
              theFile.mergeVisibleLayers();
              }catch(e) {}
    // create layer, rename, movetobottom, fill white
         theFile.artLayers.add();
         theFile.layers[0].name = "Background";
         theFile.layers[0].move(theFile.layers[1], ElementPlacement.PLACEAFTER);
         var white = new SolidColor();
         white.rgb["hexValue"] = "ffffff";
         theFile.selection.selectAll();
         theFile.selection.fill(white);
    //rename contents layer, add "work" layer for teacher to write on
         theFile.layers[0].name = "Problems";
         theFile.artLayers.add();
         theFile.layers[0].name = "Work";
    //force 2107 width
    //     if(theFile.width != 2107) theFile.resizeImage(UnitValue(2107, "px"), undefined, undefined, ResampleMethod.BICUBIC);
    // force 2048 width
         if(theFile.width != 2048) theFile.resizeImage(UnitValue(2048, "px"), undefined, undefined, ResampleMethod.BICUBIC);
    // save psd;
        psdOpts = new PhotoshopSaveOptions();
        psdOpts.embedColorProfile = true;
        psdOpts.alphaChannels = false;
        psdOpts.layers = true;
        psdOpts.maximizeCompatibility = true;
        var filePathPsd = myPDFFile.path+"/"+myPDFFile.name.slice(0, -4)+".psd";
        if (filePathPsd.exists) filePathPsd.remove();
        theFile.saveAs(File(filePathPsd), psdOpts, false)
    // save pdf whiteboard
        var pdfOpts = new PDFSaveOptions;
        pdfOpts.downSample = PDFResample.NONE;
        pdfOpts.optimizeForWeb = true;
        pdfOpts.PDFCompatibility = PDFCompatibility.PDF15;
        pdfOpts.preserveEditing = false;
        pdfOpts.encoding = PDFEncoding.PDFZIP;
        var filePathPdf = myPDFFile.path+"/"+myPDFFile.name.slice(0, -4)+" Whiteboard.pdf";
        if (filePathPdf.exists) filePathPdf.remove();
        theFile.saveAs(File(filePathPdf), pdfOpts, false)
        theFile.close(SaveOptions.DONOTSAVECHANGES)
    //MY WORK
         return theFile

  • Viewing Multi Page tiff  files received as email attachments on the iPhone

    I have spent hours trying to find a solution or a work-around to the problem of viewing multi page tiff ( .tif) email attachments on my iPhone 3G running 3.0. I have only ever been able to view the first page of these files.
    Finally I decided to come up with my own solution. I have recently launched the website www.econvertimage.com. Anyone can now freely email tiff files to the site from their phone. These files are converted to pdf and then returned to the sender for viewing on their phone.
    You can set up an auto forward for attachments coming from specific senders if you like. This way you will often receive the converted file at the same time as the original email. Visit the site for further details.
    I hope this post may save others the frustration I've endured over the last few weeks looking for a solution.
    I'm interested in future improvements people are keen to see for the site. I'll keep developing the functionality if there's a need. I look forward to receiving comments and feedback.
    Thanks

    Sounds perfect - is it operational? Sent a test message this morning, never received the PDF.

  • Need to split multi-page ID file into multiple-single paged ID files

    I have created a 366 page document (and have 2 more to create). None of the text threads from page to page, and there are no master page items. Each page is destined to be used as a single block that will be copied and pasted into a master document by a database driven plugin (and for color editing reasons it needs to be separate .indd files). For expediency, I created these as a single document because I could import the text with ID style tags to pre-format the text (with all text blocks threaded). I then broke all the text threads using API's Auto Unstich plugin. We then manually tweaked the text of each page.
    Gluon once sold a plugin called DocSplitter, but it has not been updated since CS1 and does not work with CS4.
    Before you ask why I don't have the database plugin create multiple single page docs — the plugin doesn't currently save to individual ID docs (yet - feature to be released in 3 months).
    I know that scripting could possibly do what I need, but I have little to no experience with AppleScript (7 years ago) and none with Javascript. Would love to find a pre-packaged solution and am willing to pay someone for it.
    many thanks
    Roger

    The link I was given was a dead link. I noted it in my post, so I am hoping the person that posted it will repost a
    new link. If I get it I will repost it here as well.
    I should add that the Badia Software EportTools demo is excellent. I will be buying it. It allows you to export individual PDF, EPS, PS, JPG, Text, INX and INDD files from any multipaged Indd file. It also allows for comprehensive file renaiming similar to Adobe Bridge, it even has a few twists that bridge might not have. The demo is fully operational for 30 days with no limitations except for a slightly annoying reminder. You can also export in text mode with Indd text tags attached.
    Roger

  • Inserting multi-page PDF file in Appleworks text document.

    When inserting a multi-page PDF document in an Appleworks text file, it only inserts the first page.
    How do I insert all the pages at once?
    Ron

    As far as I know you must break you PDF in single pages documents.
    Then you will be able to drag and drop all of them in a single process but it will be time consuming to move them so that they are correctly located in the layout;
    Inserting them one by one will be more efficient.
    Yvan KOENIG (from FRANCE mardi 21 juillet 2009 18:33:29)

  • Preview 3.0.7 Unable to View Multi-page TIFF Files

    I currently use fax-to-email service from j2 to receive my faxes; the faxes arrive in TIFF (.tif) format, and opened by Preview to view/print. After updating to OS X 10.4.7, the new version of Preview (3.0.7) broke the multi-page TIFF support again. Only the first page could be viewed, so I am forced to use Graphic Converter in the meantime, but really very inconvenient. This is the second time Preview is broken after Tiger update, Apple should really test it more thoroughly before releasing it as a lot of people depend on fax-to-email services for work purposes these days.

    I am getting faxes emailed from microsoft fax server and although the attachment clearly has all pages in the tiff file (I can save the file, then view it from an external windows based viewer), I can only see the first page in preview.
    I am using OS X 10.4.7 on a macbook with preview 3.0.7.
    Even within the sidebar window by clicking on the drawer icon, I do not see multiple pages. I see a single page with a little grey circle with the number of pages in it in the lower right hand corner of the page image in the sidebar indicating the proper number of pages, but there is no way to change pages.
    macbook Mac OS X (10.4.7)
    edit:
    Never mind I didn't read the previous message closely enough. It works for me after all. I am new to the OS X interface and didn't notice the tiny little triangle pointer beside the page in the sidebar.
    If you click it to "expand" the contents of the page it does in fact show me all my fax pages.
    I agree with Fred that this is in no way intuitive and I never would have guessed on my own.
    In any case problem solved. Thank you.
    Message was edited by: norespectforthedevil

  • Importing multi page InDesign Files

    Please forgive the basic question but I am still having problems with this... If I import an article from one InDesign file with 3 pages in it only the first page will show up in the content viewer. I understand folios can have multiple articles but can an imported article have multiple pages and is there a trick to seeing them in the content viewer? As a test I set up a 3 page InDesign file with type that says page 1, page 2 and page 3 on each respective page. Only page 1 is visible. Does every page of an InDesign file need to be imported seperately? I have watched all the Lynda.com tutorials on DPS and none of them address multipage InDesign files that I am aware of. Any help is appreciated, thank you!

    I apologize, I was using the content viewer on my desktop, not my tablet and the scroll bar would only show the first page, I guess it does not go through all of the pages. I did watch your course all the way through and learned a great deal from it, I will go back and find the multi page example and review. Thank you for your help.

  • Mail will NOT display a multi-page pdf file in the body.

    I want to send an email with a multi-page PDF attached that is displayed in the email- so that readers don't even have to click on the pdf to open it. Can I do that? I can do a single page, and I did determine that if I save all the pages of the document as single pds and then attach those, that works, but is there a way to display a multi-page pdf? Any help would be greatly appreciated!

    I do not use pages - there are several possible solutions to your situation - in pages you should be able to do a send pdf to iPhoto and then in iPhoto you can create an e-mail with smaller (and harder to read) images- you may be able to produce smaller (lower quality) PDFs in pages (don't know), you can change e-mail servers - use a different one it you have multiple accounts or get a free gmail account or other new account that will handle your needs
    LN

  • I can't edit multi page PDF file in Illustrator at once.

    I made 30-page PDF file in Illustrator last week.
    Yesterday my co-woker eited and sent to me.
    but i can't open 30-pages all in once
    instead of this window pops up and only 1 page of all open it.
    How do I open all the page and edit it once without any script?
    Last week I Could open it without asking.

    Keep a backup of the .ai file. Your coworker should not be making edits to pdfs, only commenting tools. Tell your coworker not to do that again, unless they know what they are doing (eg: are creating from scripts). If they persist, or this is your boss, lock the PDF with security protection.
    This script may help you. Keep in mind the popular pdf preset smallest file size converts to RGB, so your color will change and l;ayers possibly flattentin if Illustrator editing capabilites is lost.
    https://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&extid=1698047

  • Placing multi-page PDF's

    Maybe this question has already been posted but I could,t find it, so:
    You can place a pdf in keynote, but is possible to select another page than the first one from a multi-page pdf.
    That would really simplify the proces of putting together a presentation...

    Yes, I can imagine that some interface that would allow you to set different pages WITHIN the app would be cool. To place an image that you can change without changing it's connected attributes,
    1) Drag in an image
    2) Mask the image
    3) Do Format -> Advanced -> Define Media Placeholder
    Then, you can copy/paste the action from one slide to another and replace the image as you need to without having to re-set all the animation.
    Finally, feedback for Keynote is here. http://www.apple.com/feedback/keynote.html

  • Can I create multi page TIFF files in PSE?

    I wish to use a Canon TWAIN driver running a single page scanner to create multiple page TIFF files. Can anyone tell me whether this is possible in PSE please?

    No. That is not possible with PSE.

Maybe you are looking for

  • Issue in creating sales order using process_header API (web service)

    Hi All, I am trying to create sales order header using web service call to OE_ORDER_PUB.Process_header API. When I pass the inputs and test the service,I get output with return_status='S'. But no record falls at the OE_ORDER_HEADER_ALL table. I cant

  • How Do You Drag A Document You Have On A Mac Onto An External HardDrive??

    Ive just recently bought a Macbook Pro and was wondering how can you drag a document onto an external hard drive. Is it the same as Windows?? Because everytime I try that, it wont let me :s. If anyone could help it would be awesome because I need to

  • Search report takes 1 minutes,may I improve it by paging?

    Hi guys, One search page in our application take about 1 minutes to get results. And it shows timeout if I don't give search criterias. How can I improve it? The sql query joins about 10 tables and the sql is complicated. Is it possible to improve it

  • Record a speech signal and save as a wav file?

    Dear All: I'd like to record a speech signal using one microphone and write/save as a .wav file. Can anyone help me on this issue. I'm using 6024E PCI NI-DAQ 7.0. Thank you regards, Jeffrey

  • PB and Macpro node???

    I am trying to finish up on a project on PB G4 using the plugins and the CPU is begging for mercy... Have anyone tried to Node the PPC to the intel based mac;eq in my case, Powerbook is my main source and used the resources from the MacPro??????