Saving combined PDFs into one new document?

I know how to combine PDFs into one document using Preview, but I am not finding any way to save the resulting new document.  There is no "save as" any longer in Preview, and when I choose "save", it only saves the first document, not the whole collection of documents.
There must be a way to do this!  There used to be, and it was easy as pie. 
Can someone help, please?
Mark Carlson

Thank you.  I was able to conjure up "save as"--though why should you have to hold down the option key? Why isn't "save as" just there? Well, it doesn't really matter, since "save as" still only saves one of the documents in the combined bunch.
But your second method of accessing it through Print worked just fine.
Thanks so much!
Mark

Similar Messages

  • How do I combine PDFs into one document?

    I want to scan CD booklets for online digital storage. I have Pages and Preview, of course. I do not have Acrobat Professional.
    I have a large scanner and can make individual TIFs or PDFs of each spread. What would be the best way to combine these into one file?

    etresoft,
    Please don't read this as an actual reply to your post because it is not.
    But, since the thread is dealing with CUPS-PDF and I have been desperately seeking CUPS-PDF for a long time ever since I've got my brand new iMac only 5 days ago (5 days on a new iMac [which is not only new but is intel-based, and which I was forced to buy because my older PPC iMac G5 died of preternatural or some other causes] is an extremely long time on account of Snow Leopard, about which I am like a babe trying to start speaking for the first time) I found it more expedient to "reply" in order to get some help with CUPS-PDF from someone who knows.
    I've downloaded CUPS-PDF from "https://bitbucket.org/codepoet/cups-pdf-for-mac-os-x/wiki/Home" and installed it following the instructions included therein.
    The only instruction I could not follow is to pick "Generic postscript color printer"; I could pick  "Generic postscript printer" though.
    CUPS-PDF shows in the printer list.
    CUPS-PDF apparently prints as indicated by the progress bar.
    But, the print doesn't show anywhere on my computer:
    The output is not in /Users/Shared/CUPS-PDF in a folder with my user account's name.
    I did make an alias to this folder on my desktop but it only contains two folders: "my user name" and "SPOOL"
    The first folder had a "clone" of the download source page (which I deleted.)
    SPOOL has nothing in it.
    I've never had a problem using CUPS-PDF while on OS X 10.4.11, something I'll never be able to revert to.
    I'll be eternally grateful to you if you could help me with this issue but, on condition that you use a language as plain as English since my expertise with OS X, which was never as considerable as to be able to use terminal to any advantage, nor understanding terms such as sudos and the like, is now even diminished on account of the new OS I am forced to use from now on.
    Thank you so much for your help and excuse me for using this approach to ask for help.
    Best regards,
    Ruben

  • Combining PDFs into one using c# and acobat x

    Hi
    How can i combine multiple PDFs into one using Acrobat X, but control it all through c#
    Thanks

    A user will have the application open on their machine.  The application scans relevant folders looking for the documents, and when it finds all the ones it needs it needs to open them and compuile them into one PDF.  They are Hyperion reports.  The human --> Acrobat needs to go, as the trigger is the files being present.
    It is a windows form application in C# that will sit in the tray, just doing what it needs to when it needs to.
    Not on a server, as one employee needs to check when done and scan for a sense check on the compiled report.
    Hope this helps.

  • Combining picts into one new file?

    Hi, does anybody know a way to combine a few pictures (for instance a sequence of two or three pictures) into one new file that can be exported after that? I mean within Aperture ofcourse.

    You can't. Use an image editor for tht.
    In order of price here are some suggestions:
    Seashore (free)
    The Gimp (free)
    Graphic Coverter ($45 approx)
    Acorn ($50 approx)
    Pixelmator ($50 approx)
    Photoshop Elements ($75 approx)
    There are many, many other options. Search on MacUpdate.
    Regards
    TD

  • I uploaded 3 documents then converted to pdf then combined them into one new folder.  How do I down

    I uploaded 3 documents, then coonverted to pdf, then put in new folder.  how do I download the folder to my desktop?

    Create a new folder and name it.
    Drag the documents into the new folder.
    Or, select them all and ctrl- (right-) click on them and select New folder with Selection (x items).
    The files will be moved to a new folder, the folder will be selected and set in rename mode. Start typing the name.
    If you click somewhere before renaming, the folder is named New folder with items as the default.

  • Batch combine files into one illustrator document - how to open target document?

    I am making a script which will:
    1) Open a folder of Illustrator files
    2) Open each file in the folder (these files are called the source files)
    3) Select all the contents of the source file
    4) Copy the contents of the source file
    5) Paste these contents into a target file as a new layer
    6) Ensure the new layer has the same name as the old source file
    However, I don't know how to tell Illustrator where my target file is. How can I do this?
    Also, when I paste, how can I turn off paste rembers layers. (So the layers get pasted into the new layer that has the same name as the old document).
    Here is my code:
    // JavaScript Document
    //Set up vairaibles
    var destDoc, sourceDoc, sourceFolder;
    // Select the source folder.
    sourceFolder = Folder.selectDialog('Select the folder with Illustrator files that you want to mere into one', '~');
    // If a valid folder is selected
    if (sourceFolder != null) {
              files = new Array();
              // Get all files matching the pattern
              files = sourceFolder.getFiles();
              if (files.length > 0) {
                        // Get the destination to save the files
                        destDoc = document.selectDialog('Select the final saved document', '~');
                        for (i = 0; i < files.length; i++) {
                                  sourceDoc = app.open(files[i]); // returns the document object
                                  var myLayers = sourceDoc.layers; // All layers in Active Document
                                  //Go through all layers of source document and copy artwork
                                  for (i = 0; i < myLayers.length; i++) {
                                            myLayers[i].hasSelectedArtwork = true;
                                  with(sourceDoc) {
                                            var count = pageItems.length;
                                            for (var i = 0; i < count; i++) {
                                                      pageItems[i].selected = true;
                                            redraw();
                                            copy();
                                            for (var i = 0; i < count; i++) {
                                                      pageItems[i].selected = false;
                                  //Create a new title variable that has the title of the source document
                                  var title = sourceDoc.name;
                                  var title = title.substring(0, title.length - 4); //(remove extension from name)
                                  //Close the Source Document
                                  sourceDoc.close(SaveOptions.DONOTSAVECHANGES);
                                  //Open the Destination Document and create a new layer in it that is named after the title variation
                                  var newLayer = destDoc.layers.add();
                                  newLayer.name = title;
                                  //Paste into this new layer
                                  destDoc = app.paste();
              else {
                        alert('No matching files found');
    Thanks in advance for any help   
    Edit: Also, when pasting, how can I paste in place instead of just pasting.

    I have been studying this script. It is similar to what I need except it places the source files (Instead of copying & pasting them)
    http://kelsocartography.com/blog/?p=204
    I have adapted the script to my needs and it works perfectly, except it has the same problem as before: It pastes the first source file, but then it endlessly starts pasting the second source file (in a loop) and so I have to force quit.
    So my new question is, when looping through files how can you get illustrator to move on the next one?
    The original kelsocartography had this line:
    thisPlacedItem = newLayer.placedItems.add()
    thisPlacedItem.file = imageList[i];
    I belive this line is what makes Illustrator move onto the next file, but I am not sure how to adapt it to my code.
    Here is my code so far:
    function getFolder() {
              return Folder.selectDialog('Please select the folder to be imported:', Folder('~'));
    function importFolderAsLayers(selectedFolder) {
              // if a folder was selected continue with action, otherwise quit
              var myDocument;
              if (selectedFolder) {
                        myDocument = app.documents.add();
                        var firstImageLayer = true;
                        var newLayer;
                        var thisPlacedItem;
                        // create document list from files in selected folder
                        var documentList = selectedFolder.getFiles();
                        for (var i = 0; i < documentList.length; i++) {
                                  // open each document in file list
                                  if (documentList[i] instanceof File) {
                                            // get the file name
                                            var fName = documentList[i].name.toLowerCase();
                                            var sourceDoc = app.open(documentList[i]); // returns the document object
                                            var myLayers = sourceDoc.layers; // Select All layers in Active Document
                                            //Go through all layers of source document and copy artwork
                                            for (i = 0; i < myLayers.length; i++) {
                                                      myLayers[i].hasSelectedArtwork = true;
                                            with(sourceDoc) {
                                                      var count = pageItems.length;
                                                      for (var i = 0; i < count; i++) {
                                                                pageItems[i].selected = true;
                                                      redraw();
                                                      copy();
                                                      for (var i = 0; i < count; i++) {
                                                                pageItems[i].selected = false;
                                            //Create a new title variable that has the title of the source document
                                            var title = sourceDoc.name;
                                            var title = title.substring(0, title.length - 4); //(remove extension from name)
                                            //Close the Source Document
                                            // check for supported file formats
                                            if ((fName.indexOf(".eps") == -1)) {
                                                      continue;
                                            } else {
                                                      if (firstImageLayer) {
                                                                newLayer = myDocument.layers[0];
                                                                firstImageLayer = false;
                                                      } else {
                                                                newLayer = myDocument.layers.add();
                                                      // Give the layer the name of the image file
                                                      newLayer.name = fName.substring(0, fName.indexOf("."));
                                                      // Place the image on the artboard
                                                      sourceDoc.close(SaveOptions.DONOTSAVECHANGES);
                                                      //Paste into this new layer
                                                      newLayer = app.paste();
                        if (firstImageLayer) {
                                  // alert("The action has been cancelled.");
                                  // display error message if no supported documents were found in the designated folder
                                  alert("Sorry, but the designated folder does not contain any recognized image formats.\n\nPlease choose another folder.");
                                  myDocument.close();
                                  importFolderAsLayers(getFolder());
              } else {
                        // alert("The action has been cancelled.");
                        // display error message if no supported documents were found in the designated folder
                        alert("Rerun the script and choose a folder with images.");
                        //importFolderAsLayers(getFolder());
    // Start the script off
    importFolderAsLayers(getFolder());

  • How do I pull together multiple PDFs into one Preview Document?

    Folow up --- I learned from the video how to create one Preview document from mulple PDFs, but I need to know how to position pdf files in a main PDF Preview presentation document.  I need a lot more control over where a pdf is set in the final PDF document. Has anyone worked on this or have some advice.

    If you don't want to use them in InDesign for any other purpose than to assamble them in one new PDF I would rather use Adobe Acrobat Pro than InDesign.
    In Acrobat Pro: Create new Deocument > Form multiple Files, select further what you need.

  • How do I combine several pdfs into one document?

    I just switched to Yosemite, and now I cannot figure out how to combine several pdfs into one document. I rarely need to do this, so I looked at past tutorials, but nothing seems to work. Help!

    I don't understand - I've just tried it and it worked. I had 2 multi-page pdfs, opened both in Preview, followed my earlier post and saved the new pdf. The saved file is multi-page
    Odd

  • How do I turn off automatic bookmark creation when combining multiple PDFs into one?

    When I combine multiple PDFs into one, I need Adobe to use the CUSTOM bookmarks I created in the original PDFs. I do NOT want the additional PDF name as a bookmark in this instance. Is there a way to turn this option OFF in Acrobat Professional? I have version 9.

    You can not automatically turn off this action nor can you remove the 'file_name.pdf' heading, but you could add a button or menuitem to remove the 'file_name.pdf' from the bookamarks. Yes, it is one more step to perform when combining PDFs, but is you want until you have all of the PDFs combined you only need do it once.
    Removing filename bookmarks created by Acrobat by Sean Stewart
    From the above article:
    "With the release of Acrobat 6 came the ability to create a composite (binder) document from multiple files, (i.e. File > Create PDF > From Multiple Files.) When this is done, Acrobat automatically inserts a new top level bookmark at the start of each new file. The bookmark title will correspond to the source filename of the source file. While this level of separation can be helpful, it is counterproductive when the user wants the bookmark tree in the merged document to be continuous.
    "Here's a sample JavaScript to remove the top level bookmarks from the bookmark tree. This script will look for a ".pdf" extension to decide whether to remove the bookmark."
    With some additional coding you can add menu item or toolbar button.

  • How do I combine folders into one pdf, preserving subfolders as bookmarks?

    So far I've had to go into each folder, convert its contents and name the file the same name as the folder name, and combine all of these folders. I'd like it if there were an easier way.

    Hi,
    sometimes ago I wrote a VBScript which may do, what you want.
    Copy the attached Script into Notepad, change the settings and save it as AcMerge.vbs.
    If you have produced the PDF FileList, you can double click on the VBS or Drag 'n Drop
    the PDF FileList on the vbs.
    HTH, Reinhard
    AcMerge.vbs
    REM: Insert single/multi Pdfs into one PDF, based on a filelist file
    REM: to produce a file list file you can type into "Win Start" -> "Execute" 
    REM: cmd /c "dir c:\temp\*.pdf /b /s >c:\PdfList.tmp"
    REM:  where c:\temp\ is the base-folder.
    REM: The "Settings.." you can change to your needs. Drag&drop for 1 filelist-file accepted.
    *********Settings in File**************************
    FLFile = "C:\PdfList.tmp"      '//Filename for filelist-file (files to merged)
    Ask = 1                  '//0=don't ask for Insert;1=ask
    Bookmark = 1             '//0=Insert No bookmarks; 1=Insert with BM based on Filename
    InsWithBM = 1        '//1=Insert bookmarked files with BM; 0 = insert without BM
    set WshShell = CreateObject ("Wscript.Shell")
    set fs = CreateObject("Scripting.FileSystemObject")
    Set objArgs = WScript.Arguments
    if objArgs.Count = 1 then FLFile = ObjArgs(0)
    Info = "Insert PDF-Files in Acrobat based on File-list-file."&VbCr&_
           "File Name: "&FLFile &" Start now?"
    OK = MsgBox(Info, vbQuestion+vbYesNo,"Insert Files") : if OK = vbNo then WScript.quit
      '//Start or switch to Acrobat
    WshShell.run "Acrobat.exe"
    While not WshShell.AppActivate("Adobe Acrobat") : Wscript.Sleep 1000 : Wend
    Set gApp = CreateObject("AcroExch.App")
    gApp.Show
    if not fs.FileExists(FLFile) then
         MsgBox "Ups! " & FLFile & " doesn't exist? " & "Try new!", vbExclamation
         WScript.quit
    end if
    set FLFileInhalt = fs.OpenTextFile(FLFile)
    FLPOS = 1
    do until FLFileInhalt.atEndOfStream
       inhalt = FLFileinhalt.ReadLine
       if  fs.FileExists(inhalt) then
       if Ask=1 then if MsgBox(FlPos&": "&inhalt, vbOKCancel + vbInformation) = vbCancel then exit do
              ' /->Open first File
         if FLPOS = 1 then
            ' Set gApp = CreateObject("AcroExch.App")
            Set BASFL = CreateObject("AcroExch.pdDoc")
            OK = BASFL.Open(INHALT)
            if not OK Then if MsgBox("Error open Basic File") then Wscript.quit
            BASFL.OpenAVDoc(mid(INHALT,InstrRev(INHALT,"\")+1))
            WScript.Sleep 500
            Set avdoc = gApp.GetActiveDoc
            Set pddoc = avdoc.GetPDDoc
            Set jso = pddoc.GetJSObject
            PageBAS = BASFL.GetNumPages-1
          else
            PageBAS = BASFL.GetNumPages
            jso.pageNum = PageBAS+1
            Set INSFL = CreateObject("AcroExch.PDDoc")
            OK = INSFL.Open(INHALT)
            if not OK Then if MsgBox("Error open InsertFile") then Wscript.quit
            PageIns = INSFL.GetNumPages
            OK = BASFL.InsertPages(PageBAS - 1,INSFL,0,PageIns,InsWithBM)
            INSFL.Close
            jso.pageNum = PageBAS+2
          end if
          if Bookmark = 1 then
            BMNameIE = mid(Inhalt, InstrRev(Inhalt, "\")+1)
            BMNameEE = left(BMNameIE, InstrRev(BMNameIE, ".")-1)
            Set BMR = JSO.BookmarkRoot
            BMR.CreateChild BMNameEE, "this.pageNum = " &PageBas, PageBas
          end if
        FLPOS = FLPOS+1
       else  '/-> file in Filelist (=inhalt) doesn't exist
           Ok = MsgBox(Inhalt &vbCr &"File don't exist! - Continue?", vbQuestion+vbYesNo,"Insert Files")
            if OK = vbNo then QUIT
        end if
      loop
    MsgBox "DONE!" &vbCr &"Don't forget to save the File (save as)"

  • When combine multiple PDFs into one, some letters are missing and display wrong letter

    Hi all. I get a problem with combine multiple PDFs into a single PDF document. There are some PDF documents and they are working fine to open each document separately. But after I use Adobe Acrobat 8 Standard to combine them into one, some letters are missing and some display wrong letter (e.g. "forums" display "fo ums"). Our company has Adobe Acrobat 8 Standard, Adobe Acrobat 7 Professional and Standard. But all of them have some problem. Does anyone have idea for that? Please help me! Thanks very much!

    I have a similar situation, but my PDFs look fine in Acrobat Pro 8,Acrobat Reader 8, and Apple preview, but are missing letters in Acrobat Pro 7. I think it stems from the files being combined all having the same font, but each having a unique subset stored in the respective files, but with the same name (and ID?), and when they are combined, the character sets are getting hosed somehow.

  • Trying to drag pdf files i have and combine them into one pdf file in the account i just purchased with Adobe. when i drag a pdf file over Adobe doesn't accept it. says it can not convert this type of file. but it is an Adobe file. Do I need to change it?

    Trying to drag pdf files i have and combine them into one pdf file in the account i just purchased with Adobe. when i drag a pdf file over Adobe doesn't accept it. says it can not convert this type of file. but it is an Adobe file. Do I need to change it in some other form befor dragging it?

    Hello djensen1x,
    Could you please let me know what version of Acrobat are you using.
    Also, tell me your workflow of combining those PDF files?
    Please share the screenshot of the error message that you get.
    Hope to get your response.
    Regards,
    Anubha

  • I have several pics of my new grandson throughout the year.  How do I combine them into one event

    I have several pics of my new grandson throughout the year.  How do I combine them into one event

    You can drag and drop photos from one Event to another. Or you can flag them and use the Events: Add Flagged photos to Select Event.
    However, why not use an Album for the job?

  • I have multiple documents how can I combine them into one document?

    I have multiple document files in Pages. How can I combine them into one document?

    Menu > View > Page Thumbnails > click on the thumbnails > Copy/Paste into thumbnails of other document
    Peter

  • How do I bind multiple PDF Documents into one single document?

    I am trying to bind multiple PDF documents into one single document can anyone please help me?

    You would need Adobe Acrobat to do that. Reader doesn't have the ability.

Maybe you are looking for