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.
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.
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.
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.
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.....![]()
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.
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.
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".
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.
North America
Europe, Middle East and Africa
Asia Pacific