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

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);

  • How can i edit a scanned pdf file in adobe 9 pro ?

    how can i edit a scanned pdf file in adobe acrobae 9 pro ?

    With Clear Scan you get the text replacing the graphics of text. That can be edited. If you do searchable PDF conversion, you can still edit (I think). However it is an edit of the hidden layer of text behind the graphic and does not show on screen normally.
    Usually the best choice is to ask the author for the original file to edit. If that is a copyright issue, then you should not be editing anyway.

  • How can I edit a scanned pdf file?

    How can I edit a scanned pdf file? 

    You can use PDF Buddy, the online PDF editor that makes it easy to add text, images, and annotations on top of scanned PDF files.
    (Disclosure: I'm a co-founder)

  • 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

  • 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

  • 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)

  • Can't Edit .txt and .pdf files in EP6 KM

    We just migrated our last application from EP5 to EP6, and now we're having problems with not being able to edit .txt and .pdf files.  The problem is that the files will only open in the browser rather than in their native programs (wordpad/notepad, Adobe Editor, etc).  Surely others have encountered this issue.  Are there any solutions short of installing 3rd party tools?

    Hi Jeff,
    Which program opens on a link depends on two things:
    1. The MIME-Type that is sent from the server together with the resource (file) you requested by clicking a link
    2. Your Windows Setting defining which local application should be used for which MIME Type.
    So there may be two things happening:
    1. EP 6 is sending other (or no) MIME Types with the KM resources. You can check this in your KM configuration. See KM -> Services -> MIME Service
    2. Your OS got the settings for apps/MIMEs changed. This happens e.g. if you changed on Win XP to SP 2.
    So here may be a solution:
    Go to Windows Explorer->Tools->Folder
    Options->File Types, click on the TXT extention, and click
    "Delete".  Then proceed to recreate the TXT file type with the
    default app you want (notepad). 
    IE will open your app (notepad) for links to text files from that point
    on.
    So, to check this for text files, open the registry editor, go to
    "My Computer\HKEY_CLASSES_ROOT\.txt" (or .TXT), and check for a 'String
    Value' with the value "text/plain".
    This should work with any file type, as long as you use the right MIME Type (See KM configuration / MIME Services).
    HTH,
    Carsten

  • 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!

  • How to show a multi-page PDF file on iweb?

    Hi everyone,
    I'm building a website where I am showing a catalog design I did for my previous company. It was designed using Indesign and exported into PDF file. Then I saved the first page as JPEG file, inserted the JPEG file into iweb, and then enabled the JPEG image as a link to the PDF file of the catalog. I thought by this way I can let future employers to download the PDF file and view my design work. However I figured if I put my website link on places like Monster.com, anybody can see it, download it, and just steal or print out my work. I realized this is not a right way to do since my previous company should have the right of the design work. Any suggestions? Is there anyway I can let viewers only view the PDF file on the web browser without being able to download it? How should I do to display the whole catalog in a neat wey using iweb? Thank you very much in advance!!

    James I know you meant no harm, and I have to say if
    it wasn't for you I wouldn't be this far in the game.
    So if I have javascript on my website and your
    company has javascript disabled, my site wouldn't be
    very interesting to you on your work computer? What
    is the benefit of disabling javascript?
    Thanks. I'm glad I didn't cause any bad feelings.
    My company is very paranoid when it comes to IT. I guess it's the common PC world where you are once bitten, twice shy. We just upgraded all of computers to Windows 2000 !!! haha.
    I think there must be (or must have been at one time) some vulnerability associated with javascripts on websites and that's why it's disabled. Crazy, isn't it?

  • Can't save multi page pdf in preview

    Hi,
    From previous posts, I see that I can drag jpegs to make a multi page document in preview (show sidebar> drag images to it), but when I save, I get only one image. Why can't I save all the images as one document?
    Thanks!
    David

    David, that was helpful. I was having the same issue, searched the forum and found this thread.
    I might add that if you're starting with say 3 separate pdf pages - open the first one and then View/Sidebar/Show Sidebar. Add all your pages and then follow your procedure.

  • 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.

  • Since I downloaded and installed adobe reader 10, I can't see web page pdf files in safari but I can copy and paste into firefox and I can see the pdf. How can I fix this?

    Ever since I downloaded adobe reader 10, safari won't display web page pdf's but I can paste the URL in to firefox and can see it there. How can I fix this?

    Quit Safari.
    Go to /Library/Internt Plug-Ins.
    Move the AdobePDFViewer.plugin to the Trash.
    Relaunch Safari.

  • How can I edit an existing pdf file? I just need to replace some text

    my boss wants me to amend a pdf document and I've been doing it wrong. The programs I have are illustrator, in design and photoshop hope you can help.
    thank you in advance.

    I have amended a pdf before sometime ago but totally forgotten what I did.
    But I do know it can be done
    The fact that you edited one PDF doesn't mean you can edit another. There are many possible PDF "recipes" which may or may not result in direct edit-ability.
    In your original post, you state you've "been doing it wrong."
    In post #2, you state "it didn't work."
    In post #4 you state "it doesn't allow me..."
    It would be a lot easier to advise you if we had more detail in terms of how you're going about your attempts to edit, and what actually happens when you try. For example:
         "I use the Type Tool and click/drag to select text, but it makes a new text box instead."
         "I can't select individual objects. It looks like everything is grouped in one big frame"
         "When I click on text, it gets elected like objects, with anchor points all around."

  • After installing OS 10.9.1, I can't send multi-page PDFs via Mail

    After I installed Mavericks, Mail would no longer allow me to send a  PDF document over one page in length.  It will allow only the first page of the pdf to be attached to the email.

    Thanks for the signature update.  If you don't do all signatures, but instead assign it to a specific email account does it work? 
    I'm working on a post about signatures (still in progress) but a couple of workarounds.  Use System Prefs > Keyboard > Text to create a signature.  I use @@ as a signature shortcut.  You can't type in multiple lines, but you can paste them in if you create them in any message and use copy/paste.
    There is also a signature plug-in from Chungwasoft called Graffiti, but that might be overkill for what you want.
    - Stephen
    https://discussions.apple.com/thread/3263015
    http://learni.st/users/Riptide360/boards/69477-optimizing-apple-mail

Maybe you are looking for

  • I created 2 apple IDs, can i delete one.

    I created 2 apple ID's. One with an email I dont' really use and have the mail forwarded to a newer account and the other was created using my me.com email that I don't use as my email either. I'd like to keep the first apple ID, its the one that is

  • Issue with MSS 1.41

    Good Night. In the configuration standard that is displayed in the portal in the MSS->Team->Employee Information->General Information In the Iview Employee search the system only display in the "table control" the employee that is in the area of resp

  • Power mac g5 will not boot to dvd at all any ideas?

    Power mac g5 2.3 late 2005. Leopard 10.5 installed on drive and boots ok to hhd. how ever i need to go back to tiger 10.4.4 or later for my music hardware to work correctly.. Sooo i purchased a Tiger 10.4 black retail disk and it will not boot to it

  • Converting a pdf to word_produces garbage

    a pdf (in English) created in Shanghai by a Chinese person using a local OS, looks ok at this end. However using the adobe online conversion tool only garbage is produced and parts of the original (one page) document float now across two pages. Can a

  • Saving a web page including images for offline viewing

    Yes, I can view and save the HTML for a web page. But is there a utility or technique which will enable me to pull all the images and enable me to view the page without distortion when offline? G5 iMac 1.8Ghz   Mac OS X (10.4.8)