Skip navigation
Currently Being Moderated

Need File-Save as-PDF as a toolbar button and one item on menu

Jul 27, 2012 3:24 AM

Tags: #missing_acrobat_x_features #acrobat_10_standard #toolbar_button #menu_item

What I'd like to see is a single menu line item and button added for File ->Save as ->PDF.  Right now, you have to open three menus to perform this function,and there is not a toolbar button offered at all.  Every document I save in this program is in PDF format, so it is frustrating to have to perform this action every time.  There are keystroke combinations (Shift + Control + S) but I tend to use the mouse more than the keyboard.

 
Replies
  • Currently Being Moderated
    Jul 27, 2012 9:57 AM   in reply to ouzelkat

    There's a toolbar button for "Save" (i.e. overwrite to the current location) but I don't know of any software that has a system toolbar button for "Save As.."

     

    In terms of the need to open a submenu for Save As > PDF, that's something which has been highlighted by a number of users. You'll have to see what the future brings.

     
    |
    Mark as:
  • George Johnson
    9,209 posts
    Aug 11, 2002
    Currently Being Moderated
    Jul 28, 2012 11:42 AM   in reply to ouzelkat

    You might want to use JavaScript to create a custom toolbar button that performs a Save As, and prompts you to overwrite. The doc.saveAs method has to be in a properly constructed trusted function in a folder-level JavaScript file, which would also include the code to add the custom toolbar button. For more info, see:

     

    http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_A croJS.88.524.html

     

    http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_A croJS.88.134.html

     

    Post in the Acrobat JavaScript forum if you get stuck.

     
    |
    Mark as:
  • Currently Being Moderated
    Jul 29, 2012 11:21 AM   in reply to George Johnson

    Assuming ouzelkat has Acrobat X, there's no option to add a system area toolbar icon any more - only a button in the Tools Pane which can then be dragged to the Quick Tools area.

     
    |
    Mark as:
  • George Johnson
    9,209 posts
    Aug 11, 2002
    Currently Being Moderated
    Jul 29, 2012 12:09 PM   in reply to Dave Merchant

    Right, that was what I had in mind. Just as effective as what you could do previously.

     
    |
    Mark as:
  • Currently Being Moderated
    Aug 24, 2012 10:49 AM   in reply to ouzelkat

    Exactly what I came here to suggest. 

    As the save button is almost always "greyed out", and my most common task is to save the opened pdf, why oh why doesn't the toolbar include "Save as".  I could live with a dropdown menu from that button, but would prefer to preset it.  The toolbar as it is currently, isn't all that customizeable, and the quick tools does have any of my "quick" use items. 

    Please include "Save as" or "Save to" icons on the toolbar.

    And while you are at it, include "print as image"  on the first page of the print dialog.  It is neccessary for most print jobs in my situation.

     

    Acrobat Reader X, Acrobat Pro.

     
    |
    Mark as:
  • Currently Being Moderated
    Sep 1, 2012 2:40 PM   in reply to Dave Merchant

    Dave Merchant wrote:

     

    There's a toolbar button for "Save" (i.e. overwrite to the current location) but I don't know of any software that has a system toolbar button for "Save As.."

    You're just not looking hard enough - perhaps you know a software package called Microsoft Office? Even my oldest version (2003) has a Save As toolbar button (granted, it isn't a cute little icon, just the words, but it works)  Go to Tools> Customize. Select File on the left and scroll the right window to find Save as. Click and drag to your toolbar.

     

    My question is why would you need this button for Acrobat? To start a new document, all the options begin with "Create a PDF from....." so why would you need to specify PDF format? I don't have X - can you begin a document without a format in it? Call me confused.....

     
    |
    Mark as:
  • Currently Being Moderated
    Sep 2, 2012 3:15 AM   in reply to DK CGA

    You can add anything to  the quick access bar in Office that has a keyboard shortcut or a menu entry, but 'Save As' is not part of the system toolbar. Acrobat's system toolbars are fixed for a reason, and we've explained that you could add Save As to Acrobat's Quick Tools area if you wanted to.

     

    ouzelkat was looking for Save As > PDF because it allows you to change the filename before writing to disk, whereas Save writes to the current location. It's not about changing the filetype, and the only documents created or opened inside Acrobat are PDFs or Portfolios.

     

    The menus in Acrobat X are different from the menus in Acrobat 9,8,7,etc. and so you may surmise that the next version will be different again. That's all I'm saying on the subject.

     

    DK CGA wrote:

     

    You're just not looking hard enough - perhaps you know a software package called Microsoft Office? Even my oldest version (2003) has a Save As toolbar button (granted, it isn't a cute little icon, just the words, but it works)  Go to Tools> Customize. Select File on the left and scroll the right window to find Save as. Click and drag to your toolbar.

     
    |
    Mark as:
  • Currently Being Moderated
    Sep 4, 2012 12:15 AM   in reply to DK CGA

    As I stated above, the Save button is greyed out, and the menu option File>Save As>PDF is tedious.  Save Button would suit my purposes, if it was available, and allowed me to chose a location.  My situation is, usually, opening a PDF from a web site, and saving it locally.   If there is a way of adding Save As to the quick tools bar I haven't found it.  I find Acrobat a necessary evil, and the recent versions to be more problematic than previous (9) versions.

    Each software package has to make/break it on its own.

     
    |
    Mark as:
  • George Johnson
    9,209 posts
    Aug 11, 2002
    Currently Being Moderated
    Sep 4, 2012 1:01 AM   in reply to alts63

    Here's some barebones code to add a Save As toolbar button. It goes in a folder-level JavaScript file that you have to create and install properly:

     

    var mySave2 = app.trustedFunction(function(doc) {

     

        app.beginPriv();

     

        var oFS = app.browseForDoc({bSave: true, cFilenameInit: doc.documentFileName, cWindowTitle: "Save As"})

     

        if (oFS) {

            doc.saveAs({cPath: oFS.cPath});

        }

     

        app.endPriv();

     

    });

     

    app.addToolButton(

    {

        cName: "ToolbarSaveAs2",

        cLabel: "Save As",

        cExec: "mySave2(this);",

        cEnable: "event.rc = app.doc;"

    });

     

     

    For more information on folder-level scripts, see: http://acrobatusers.com/tutorials/print/entering-folder-level-scripts

     

    and for updated info, see: http://acrobatninja.blogspot.com/2011/09/acrobat-1011-javascript-chang es.html

     

    As Dave mentioned, in Acrobat 10 you'll have to add the new button from "Tools > Add-on Tools" to the Quick Tools toolbar by right-clicking it and selecting "Add to Quick Tools Toolbar".

     
    |
    Mark as:
  • Currently Being Moderated
    Sep 30, 2012 10:24 PM   in reply to ouzelkat

    In Acrobat XI we now have the Save and Save As entries on the top-level File menu (the Acrobat menu on Mac) so there's no longer a need to open the second-level menu. It is also possible to place both these items on the Quick Tools area and on a custom Pane using the new Tool Sets feature.

     
    |
    Mark as:

More Like This

  • Retrieving data ...

Bookmarked By (0)

Answers + Points = Status

  • 10 points awarded for Correct Answers
  • 5 points awarded for Helpful Answers
  • 10,000+ points
  • 1,001-10,000 points
  • 501-1,000 points
  • 5-500 points