Combine PDFs with a script

I want to create a script, either AppleScript or JavaScript, that automatically combines all PDFs that are open in Acrobat Pro, then saves and closes the new binder. I'd also like to specify location of the saved binder.
If that is possible, it may be possible to do it without opening any PDFs, just specifying which files to combine. That would save time not having to open any PDFs

Consider using an external script, especially since I don't know how you'd do this with batch processing (aka Action) within Acrobat. For example, a VBScript/JScript could loop through the files in a directory, determine which files need to be combined, and use IAC (InterApplication Communications) with Acrobat to do the combining. Then save each new file to the appropriate directory. For more information on IAC, download the Acrobat SDK. There is an Acrobat SDK forum here where you can ask more questions.

Similar Messages

  • Can I combine .pdf with basic subscription?

    can I combine .pdf with basic subscription?

    There is no "basic" or "full" subscription; there are different subscription plans like ExportPDF, PDF Pack, and other services.  See https://www.acrobat.com/
    To combine PDF files you need the PDF Pack.

  • Need to custom combine PDF - use a script?

    I would like to make various booklets from a folder containing many pdfs.  If I use a script, the script would have to read an input file and arrange the order and the output bound pdfs.  I would also like to run the script from within a portfolio, is that possible?
    TIA
    j

    I'm not sure what you mean by running the script from a portfolio, but I've
    created a script that reads a text file with file paths and then combines
    those paths into a new file. See here:
    http://try67.blogspot.com/2009/10/combine-pdf-files-from-text-list.html

  • Drag and Drop Image to PDF with Java Script

    Hi,
    I have to create some PDF reports and contained within these reports there are numerous images, some as many as 30-40. This is really time consuming. Can anyone please advise if there is some java script available so I may Drag & Drop an image onto a button or directly onto the PDF report.
    I have attached an example video of the current process and as you will see the process is very long to say the least. Any assistance would be appreciated.
    Kind Regards
    Terry Lewis

    Hi Gilad,
    Apologies for that I edited the wrong video in my Youtube account.
    You mentioned that its not possible with JS.
    Are you aware of any other options?
    Kind regards
    Terry
    P.S. I have amended the video situation.

  • Autopopulate PDF with Pictures Script?

    I do home inspections and always take camera shots in the same sequence, every time. I then take these pictures and add them to a PDF template that I then send off to the client. This process is being done many times a day manually for each house I inspect.
    Would it be possible to create a script that automatically populates a tempate with the corresponding picture number in the camera?
    Please see the image below to illustrate the issue (please click to enlarge)
    I am not knowledgeable in Javascript or programming; however, I just started learning python.

    I was under the impression that picture number ranges from 1 to 9999. Acrobat created forms can not directly import images, but LiveCycle Designer forms can import images.

  • Combine JSP with Java Script!

    Hi,
    I am writing a .jsp file. I am able to put value of jsp into my java script code like..
    var i = <%= k %>
    but, now my requirement is reverse. I need to put the value of java script variable i into jsp variable k.
    Someone told me that it is possible using eval function.
    Now, using eval function , I can do the following ...
    function xyz() //java script function
    eval(<% int k = 5; %>);
    but, I need to put the value of java script variable i into k.
    I tried eval(<% int k = %> + i);
    but it is not working that way.
    Can anyone tell me how can I achieve this? Please reply as soon as possible.
    Thanks

    Just came across this, and even though it's old, I thought Id add something to it since I know a lot got problems combining javascript and jsp; and that most usually don't provide enough info to get someone started.
    To be able to "use" Java variables inside a javascript, you need to pass them in the function call:
    <%
        String aVariableToPass = "tadaaaaa";
    %>
    <form onSubmit="myFunction(this,'<%=aVariableToPass %>')" method="post" name="myForm" action="">
       <table>
         <tr>
              <td>
                   <input type="submit" value=HitMe" name="submit"/>
              </td>
         </tr>
       </table>
    </form>The function:
    function myFunction(form, theVariablePassedIn)
             var accessToTheVariable = theVariablePassedIn;
    }Now use accessToTheVariable inside the javascript, or theVariablePassedIn directly if you please.
    Cincerely. P

  • Combine PDF files

    How do I create a combined PDF with sepearte sections as in the past Adobe selections.  I now have Adobe Acrobate X and I cant find that choice only one combined file.

    Are you a subscriber to Adobe PDF Pack (this is the PDF Pack forum)?

  • Corrupted characters when importing PDFS to combined PDF

    When I import PDFS they are showing up in the combined PDF with corrupted characters. What's up?

    You probably nailed it on the head.  The fonts in the separate PDFs have issues already.  So when you attempt to combine them Acrobat tries to save and ... Voila!  Garbage characters.  You might be able to test this by exporting the separate PDF files to MS Word documents.  My guess is that you will get garbage characters on the same pages as you would when you combined the PDF files.

  • Combine jpegs to create PDF with blank page background

    Hello, I have hundreds of newspaper scans of various sizes, same dpi, and I want to combine them to create one PDF with each of them on a blank 8.5 x 11 background page? like in a scrapbook. Is this possible using only acrobat? Or does it need to be done on a program like indesign? Appreciate any thoughts.

    Here's a script that you can use to create the blank document with a button on each page. When a page is clicked, it will prompt you to import an image (it defaults to PDF, so select JPG from the from the dropdown) to use for the icon. You can set the "num_pages" variable from 100 to whatever amount you need. To run the script, open the JavaScript console (Ctrl+J), copy the entire script below, paste it into the console, select all of the lines, and press Ctrl+Enter. This will run the script and the result will be a 100 page PDF:
    // Start of script
    // Create a new document and make the page a template
    var newDoc = app.newDoc({nHeight: 11 * 72, nWidth: 8.5 * 72});
    var t1 = newDoc.createTemplate("t1", 0);
    // Add a button to the template and set the various properties
    var f = newDoc.addField("icon", "button", 0, [0, 11 * 72, 8.5 * 72, 0]);
    f.buttonPosition = position.iconOnly;
    f.borderStyle = border.s;  // Solid
    f.buttonAlignX = 50;
    f.buttonAlignY = 50;
    f.buttonFitBounds = true;
    f.buttonScaleHow = scaleHow.proportional;
    f.buttonScaleWhen = scaleWhen.tooBig;
    f.lineWidth = 0;
    f.fillColor = color.transparent;
    f.strokeColor = color.transparent;
    f.setAction("MouseUp", "event.target.buttonImportIcon();");
    // Create multiple pages based on the template
    var num_pages = 100;
    for (var i = 0; i < num_pages; i += 1) {
        t1.spawn(i, true, false);
    // Remove the template page
    newDoc.deletePages(newDoc.numPages - 1);
    // End of script
    Save the file that is generated. After you populate all the buttons by clicking on each page, you can flatten the pages by entering the following line in the console and executing it as you did with the previous script:
    // Convert button appearances to regular page contents.
    flattenPages();
    Save to a different file and you should have what you want. Post again if anything isn't working.
    Note that it would be possible to automatically import the images, but you'd need to create a list of the files you want to import and amend the script a bit. If interested, I could show an example of how you'd do this.

  • Combining pdf files on a single page using a script.

    Hello all,
    I am working on a project where i need to combine many pdf files to create a production file.
    I have some small pdf pages that i like to merge on a single pdf page.
    Is there any way how to do this with some script?
    I am building a webbased application that is working with php.
    Thank You.

    I've tried  pdftoolkit but pdftoolkit has not the functionality I'm looking for but I'm  looking for something that can be controlled from the command line like pdftoolkit.
    Dear
    I am looking for the same script you are looking for .Could you please tell me about the necessary downloads in order to make pdftoolkit command line works.I have downloaded an exe file from their website to my server but the code does not work

  • Can't combine a IRS fillable form pdf with Acrobat XI

    In past years I have combined an IRS fillable form pdf with attachments before printing and archiving.
    However, this year I contine to get an error message.
    Not sure if it is XI vs X or new type of pdf by IRS but I'm a Acrobat relative beginner and need some assist.
    Maybe just operator error.
    This is the dialog that I keep getting:
    Any tips greatly appreciated.
    Thank you.

    Thank you.
    Yes, it is created by Adobe LCD ES 8.2.
    I don't see the type of document. Probably staring at me. Sorry.
    Can I convert or somehow get around this?
    Last year's looks to be the same type of animal but I was using Acrobat X. Would that make a difference?
    This beginner, old beginner , appreciates the help.

  • Pdf reader X has problems with small pdf and printer with post script driver

    Hi friends.
    I have installed new Reader X and then i saw that, when i print a very small pdf with about 50 kb and i print it on a Laserjet 4000 printer the printer has problem with the amount of data that reader 10 produces.
    When i install a Postscript driver for the printer my computer makes up to 3.5MB printer data from a 50kb pdf.
    When i install a PCL driver for the printer my computer makes only 350kb from the same 50kb pdf file!!!!
    When i install Reader 9.3 the 50kb file becomes also only 350kb on the printer with post script driver, and i can print without problems also.
    my printer has 8 MB Ram and that should be enough for 3.5MB printer data.
    But when i print the pdf with 1 side only, the printer created a side who is only filled with 50% of the text, then there comes out a second page with the message.....not enough memory in the printer.
    i can not change the postscript driver to a pcl driver cause our ERP System can not handle printer with PCL drivers.
    Can someone help me please.........are there settings in Reader X who can solve my problem ???
    Thank you very much for help!

    put ? after rwcgi60.exe

  • Add hyperlinks to pdf with script

    Hello,
    We have some pdf's in which we would like to add hyperlinks to a bunch of specific words. We would like to do this with a script.
    Just, I have no clue on how to do this with Adobe Acrobat. For the Word documents I can use VBA...
    Could somebody help me?
    Thanks!

    To develop with Acrobat you will need the Acrobat SDK. Forum here: Acrobat SDK

  • Combined pdf files with garbage fonts

    I need help with creating a combined pdf document.  I start with word 2013, and use the styles to create a linked table of contents.  Then Save As to a pdf.  I deselect the Options to allow the links to work in the pdf format.  Then I add other pdf's created from word, excel or AutoCAD.  Finally I add outside pdf's from other sources (i.e. manuals) to complete the combined pdf.  Some, not all of my AutoCAD pdf's will have text changes, boxes or the letter L, basically gibberish.  I did recently change computers from a desktop to a laptop.  Running windows 8 and upgraded Acrobat Pro from X to XI.  This is extremely frustrating as it just recently seemed to start doing this.  I work for a manufacturing firm and have created combined pdf files to distribute to customers, vendors, etc. on a regular basis, and this just started.  I don't know how to fix it.  Please help

    Hi Tullefog,
    Kindly post this query in Acrobat forums:Acrobat
    Regards,
    Florence

  • Open multi page pdf specific page in Illustrator CS4 with apple script

    I need to open multi page pdf specific page in Illustrator CS4 with apple script. Is it something like this:
    activate  (open file theTargetFolder as PDF with options …).
    Thank you.

    Carlos,
    Muchas Gracias por tu colaboración y excelente script, el que se abra el ESTK no tiene mayor importancia.
    El caso es que Adobe recomienda encarecidamente NO utilizar Illustrator para editar PDFs, por diversas razones, aunque cuando no hay otro remedio o herramienta disponible, o conocida ...
    Para llegar aquí, aparte de San Google, hay que ir a Adobe.es (en mi caso), pestaña de Ayuda,  ..... (hasta aqui bien),
    luego hay que bajar hasta el final y ver Comunidad y Foros...... (esto puede ser)
    al pulsar aparacen un montón de foros se supone de programas pero en inglés,
    y la última línea es de International Forums,  ya casi hemos llegado)
    pulsamos entonces, y por fin se abren cuatro palabras con idiomas, en una dice: español      (casi no me lo puede creer)
    pincho y llego por fin aquí.
    Muy poca gente sabe de la existencia de este pequeño refugio, si a esta dificultad añadimos la peculiar forma de ser de la gente, ....

Maybe you are looking for

  • How can I install Windows 8.1 using a USB Pen Drive in Late 2011 Macbook Pro with DVD R/W given.

    How can I install Windows 8.1 using a USB Pen Drive in Late 2011 Macbook Pro with DVD R/W given. I have Boot Camp 5.1.2 (497) and there is no option for installing using USB. I have downloaded an image of Windows 8.1 already. I can't install using DV

  • Set midnight commander as default file manager.

    How can i set mc as a default file manager to open files from chrome downloads in it? I've put a .desktop file inside /ust/share/applications/ midnight-commander.desktop [Desktop Entry] Name=Midnight Commander Type=Application Terminal=true Comment=A

  • Can't find netflix or direct tv superfan apps to put on my samsung fascinate

    My question is can I put other apps on my fascinate that are'nt in the market?

  • Can i restore my photos?

    I backed my iphone up to icloud, then factory reset my phone. When i restored my phone only half of my photos came back. I logged onto icloud.com ad they arent there either. Can i restore the other half of my photos? They are greatly needed. Thanks!

  • Streaming data to http

    I'm to create an app tasked with extracting data from a database and sending it in the csv format to a server via HTTP. The data should arrive on the server end in a packaged format. Data will be accessed from multiple sql queries, thus multiple csv