Save icon

the save icon in reader does not just just save the pdf file it acts like a save as, asking the file name and if i want to over wright it. i had it fixed on my old computer where it would just save with out asking any questions or prompts. i cant seam to figure it out.

You are correct. It actually is "Save As".  When you click the Disk icon ( a.k.a. Save file ) note the title of the window that pops up.  It says "Save As".  If you want to simply "Save" then you can use File>Save.  This is true for both Adobe Reader X and Adobe Reader XI.

Similar Messages

  • Saving a pdf without a "save" icon in the toolbar.

    I'm using Adobe Reader and Windows XP.  Most times I locate a pdf document on the web, I can save it by clicking the save icon (the one that looks like a floppy disc).  But, sometimes, I'm presented with a version of a pdf that allows me to print it, but has no save icon in the toolbar.  Can I save such a pdf to my computer without the chore of printing it out and, if so, how?  Many thanks for any help.

    Thank you SO MUCH Bernd for this ideal solution, it has made my life a good deal easier!!!

  • Disable the save icon of pdf document?

    Hello,
    My gool is to disable the save icon of pdf document when i open the pdf document inside flex application.
    Have you any ideas?
    Thanks in advance,

    This isn't something that can be managed from the Flex end of things. You have to configure the document DRM.

  • There is no save icon in acrobat reader 9

    hi i am running acrobat reader 9.2 on windows vista 64 bit ultimate edition. i recently had installed adobetechnical communication suite but it did not work and i had to remove it. after i did that the floppy disk icon disappeared from the tool bar in reader. i have tried re installing it but it still will not show it. i deal with very large pdf files and it is not cost efective to print them out. i only have three options, print,share or create. there is no save icon that i could find. other people in this office running the same version of software have the little floppy icon while looking at the same document i do not. what do i need to do to be able to save online pdf files to my pc.

    Truthfuly, I didn't think there was, but it seemed worth a shot.
    Is the missing Attendee List pod happening just in this room, or is it in multiple rooms?
    If it is just this room, I'd recommend that you delete (after moving any recordings and desired content to the Content library) the room and recreate it to see if that resolves the issue.

  • Accidently deleted the "desktop and screen saver" icon

    Hi,
    I accidently deleted the desktop and screen saver icon from the system preferences. I deleted it from the trash too, is there anything I can do to get it back?
    Thanks

    laur.son wrote:
    Hi,
    I accidently deleted the desktop and screen saver icon from the system preferences. I deleted it from the trash too, is there anything I can do to get it back?
    Thanks
    Welcome to Apple Discussions:
    Exactly how did you delete it?
    Not knowing what computer or OS you are using, it's not possible to provide any help. We need more info and a filled-in profile.
    You can always restore the system from your backup.

  • Can we call a report on the 'SAVE' icon ?

    Hello,
    I want to call a report when i hit the 'SAVE' icon on,lets say 'Create Sales Order screen' or  FB60 .. how can i do that ?  please guide me
    Thanks...
    Shehryar

    Hi Dahar,
       When you want to do some validation for the 'SAVE' icon, in a standard program definitely there will be a save_exit provided, where you can do your own validation. I dont know for which transaction you are using so for your std. transaction pls find the save exit and code accordingly.
    Hope this soves your issue.
    Regards,
    Tushar

  • Location of Save Icon after Scan from HP 8600 to Mac

    After scanning a doc from my HP 8600 via wifi to my Mac, I am prompted to save the doc by hitting the Save Icon.  I cannot find the Save Icon.   Where is it?  I cannot find the scanned doc anywhere on my Mac.  Suggestions please.  Thank you. 

    Hi RickP777,
    Welcome to the HP Forums! I gather that you cannot find the Save Icon while scanning with your HP Officejet 8600 to your Mac. I am happy to help you with this scanning issue! I have some questions for you:
    What program are you using for scanning?
    Are you scanning from the computer, or the printer?
    What Mac OS X are you using? OS X: Finding your OS version and build information.
    In the meantime, please take a look through the How to Scan guide for your Operating System. Scan.
    Hope to hear from you, and thank you for posting!
    RnRMusicMan
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to say “Thanks” for helping!

  • How disabled the save icon of pdf document ?

    Hello,
    My gool is to disable the save icon of pdf document when i open the pdf document inside flex application.
    Have you any idea?
    Thank you

    You can not.
    But you can apply document security or apply Digital Rights Management.
    If you can get the users to add a special Acrobat/Reader application folder JS file, you could remove the button, but you would still have the menu items for 'Save' and 'Save as' and the keyboard short cut of '<Ctrl> + S'.

  • Module pool save icon

    Hi all,
    i have a module pool program where it's used for creating,modifing a business object. i have a save icon in application tool bar to save the code .
    but the problem here is in the modification part where  i have a table control and the data which is modified is being saved correctly but i have another icon(not in app tool bar) where it's used to delete a particular row in the table control. and when iam saving it, the row is not being deleted from the database table .can anyone help me in this issue.
    PAI
    MODULE USER_COMMAND_0110 INPUT.
      case ok_code.
           when 'DELCON'.
          perform delete_condition_row.
          refresh control 'TAB_COND' from screen '1004'.
      endcase.
    ENDMODULE.                 " USER_COMMAND_0110  INPUT
    FORM delete_join_row .
       DATA L_SELLINE          LIKE SY-STEPL.
       GET CURSOR LINE L_SELLINE.
       DELETE g_TAB_join_itab INDEX L_SELLINE.
    ENDFORM.                    " delete_join_row
    MODULE USER_COMMAND_1000 INPUT.
    case ok_code.
      when 'save'.
          data zgnx_cond_tab type table of zgnx_condition.
          data zgnx_cond_wa type zgnx_condition.
          refresh: zgnx_cond_tab.
          clear: zgnx_cond_wa.
          loop at g_TAB_COND_itab
          into g_TAB_COND_wa.
            move-corresponding g_TAB_COND_wa to zgnx_cond_wa.
            zgnx_cond_wa-obj_name = SCR1000-OBJ_NAME.
            append zgnx_cond_wa to zgnx_cond_tab.
          endloop.
         MODIFY zgnx_condition from table zgnx_cond_tab.
    ENDMODULE.
    This is the code that i have used.

    You have not coded to delete from the db table, only from the internal table.
    FORM delete_join_row .
    DATA L_SELLINE LIKE SY-STEPL.
    GET CURSOR LINE L_SELLINE.
    <b>DELETE g_TAB_join_itab INDEX L_SELLINE.</b>
    ENDFORM. "
    Regards,
    RIch Heilman

  • Can I put a save icon on the menu bar

    can I put a save icon on the menu bar

    If you click on the bluetooth icon in top right menu bar and scroll down to your mouse it will show the battery % left.  You can also download the mighty mouse widget and it will show status in the dashboard.

  • Number range is not enabling save icon

    HI all,
    vn01 tcode, my functional team is changing the intervals and once it completed if they click on back button then
    it is not asking us to save but the changes has been updated without saving and if we delete intervals and tries
    to click back button then it is asking to save.
    Any note needs to apply then let me know.
    BR,
    Kutty

    Hi,
    Make sure you have sufficient authorization to have the Save Icon enabled.
    Else, you may try changing the number range from SNRO by selecting the required object.
    Also check the followiing, if it helps.
    http://help.sap.com/saphelp_nw04/helpdata/en/1f/8311204bc511d189750000e8322d00/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/aa/dbc9b4b56143bb8f2ae909d7d040fa/content.htm
    http://www.sap-img.com/sap-sd/number-ranges-in-sales-order.htm
    Regards,
    Varun

  • How to disable save Icon?

    We have a legal requirement in our bank that in our intranet site whatever document we show it should have save icon disabled? [thought there are lot if ways we can capture the contents of it even with save icon disabled]
    Is there any way of implementing the save icon disabled...I spent almost three hours with no result.... My coding will look like this
    int permissions = ~(PdfWriter.AllowPrinting | PdfWriter.AllowCopy | PdfWriter.AllowModifyAnnotations | PdfWriter.AllowFillIn | PdfWriter.AllowAssembly | PdfWriter.AllowModifyContents | PdfWriter.AllowScreenReaders);
    PdfEncryptor.encrypt(reader,fos,true,"","",permissions);

    I have pasted my code below
    We are creating a new pdf and applying permissions for that....
    I searched for more than two hours and couldn't find a way to disable save icon in the API we use
    com.lowagie.text.pdf.PdfEncryptor;
    com.lowagie.text.pdf.PdfReader;
    com.lowagie.text.pdf.PdfWriter; [you can paste this in google which will explain this API]
    I thought this as a constraint with this API, hence searching for other API's which has this feature...in most of the forums I saw implementing this as not possible....hence thought of checking in Adobe forum where people might suggest some other API...Please let me know whether this feature [if it is really a programmable feature] is available in API's you have used...Thanks Aandi Inston!
    byte[] documentBytes = document.getContentBytes(); //which will get the content of a pdf
    File newFile = File.createTempFile("tempPdfFile", ".tmp");
    FileOutputStream fos = new FileOutputStream(newFile);
    reader = new PdfReader(documentBytes);
    int permissions = ~(PdfWriter.AllowPrinting | PdfWriter.AllowCopy | PdfWriter.AllowModifyAnnotations | PdfWriter.AllowFillIn | PdfWriter.AllowAssembly | PdfWriter.AllowModifyContents | PdfWriter.AllowScreenReaders);
    PdfEncryptor.encrypt(reader,fos,true,"","",permissions);

  • Webscan has no save icon

    I am using a HP Officejet Pro 8600 N911g. When I perform a Webscan it does the scanning but then it says in red to press the save icon to save the file. I do not see the save icon.
    This question was solved.
    View Solution.

    You could try upgrading to IE 11, or reaching out to Microsoft to find out why and how to fix the issue; Help with Internet Explorer
    Please click the Thumbs up icon below to thank me for responding.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Sunshyn2005 - I work on behalf of HP

  • B110a scan - no "Save icon"

    logged into 110a using Chrome and  printer's  IP address.  Select scan options, and a preview of the scan duly appears.
    If I scan as PDF then the "Status" (shown in red) reads:
    Scan Done
    Click the Save icon to save the scan on your computer
    BUT there is no "Save icon" anywhere I can see.
    If I scan as JPEG then the Status reads
    Scan Done
    Right-click the image to save the scan on your computer.
    When I do this it appears to work, but in fact creates an empty file of zero size.

    Window with scanned text is from Adobe Acrobat Reader and depends on version of Reader.
    Just click into small window with scanned page and press CTRL+SHIFT+S to save pdf file.
    Jan Tomek

  • Mail- Save Icon does not work

    I have noticed with mail since 10.5.2 that the small save icon on the email document does not save attachments / does not work anymore. I have to go to file menu and select "Save Attachments"
    Is this a bug or what ??

    John,
    I only now saw your first post. Have you looked in Mail Downloads folder to see if the attachments were saved there? In Mail 3.x, a quick click of the Save button would be expected to result in an unannounced save to that downloads folder. However, a click and brief hold on the Save button would be expected to result in a Save dialogue.
    More info, please.
    Ernie

Maybe you are looking for

  • Sprint says Q10 can not access internet/data in Chas/Hunt WV area

    So I upgraded to a new Q10 and spent a few hours loading and configuing all my emails, etc.  Driving to work this morning, I noted that there was no emails received after I left my house (wifi-enabled).  Tried to open the Browser and received the err

  • Lines and Boxes in Pages. Please help!

    I created a poster in Pages and it is printing with all kinds of lines and boxes behind the text and images. When I go into the doc I do not see them there. Where is this coming from and how do I get rid of them? thank you!

  • Best way to manage 100gb of pics

    I have about 100gb of photos in about a dozen different iphoto albums. I split them up because I was running out of disk space and needed to offload some. Now I have a much larger hard drive. What is the best way to manage this volume of pics? IPhoto

  • HT201364 The product distribution file could not be verified. It may be damaged or was not signed.  What now!!!

    Trying to upgrade to Mavericks but get The product distribution file could not be verified. It may be damaged or was not signed. I have done Google and done the Var folder thing and deleted the folder with Apple store etc but to no avail

  • SOA Governance - not just a tech phenomenon

    Hi I am an IT-Architect in an IT-company that is in the middle of a SAP transition. We are not there (ESOA) yet - not by a long shot. Before reaching at a tech level were services are build from tech buildingblocks we lack and need a business perspec