How do I enable "Save As" and disable "Save"

I have constructed a filable form in Adobe Acrobat Pro 8.1.  The idea is to have this form downloaded to the users computer and used weekly to track expenses and each week to print and save a copy.  The problem is that with save enabled it overwrites the original form and now the person must download another original.  My question is; How do I enable "Save As" to be used with filled out forms while disabling the "Save" function after data has been entered on the form?
Thanks for any assistance,
Pat

OK Pat,
In LC Designer you would create a button with the following JavaScript in the click event:
app.execMenuItem("SaveAs");
This will bring up the Save As dialogue window.
This simplified solution will work; however if you want to be more specific in file name / path then you will run into security issues, which will require additional privileged script / certified solutions. There are some posts dealing with this:
http://forums.adobe.com/message/1357119#1357119
http://forums.adobe.com/message/1359267#1359267
While the solution may not be ideal, it will at least prompt the user to "Save As" instead of "Save" and the user will just have to be responsible for making sure they rename the file.
Good luck,
N.

Similar Messages

  • How to validate XML against XSD and parse/save in one step using SAXParser?

    How to validate XML against XSD and parse/save in one step using SAXParser?
    I currently have an XML file and XSD. The XML file specifies the location of the XSD. In Java code I create a SAXParser with parameters indicating that it needs to validate the XML. However, SAXParser.parse does not validate the XML, but it does call my handler functions which save the elements/attributes in memory as it is read. On the other hand, XMLReader.parse does validate the XML against the XSD, but does not save the document in memory.
    My code can call XMLReader.parse to validate the XML followed by SAXParser.parse to save the XML document in memory. But this sound inefficient. Besides, while a valid document is being parsed by XMLReader, it can be changed to be invalid and saved, and XMLReader.parse would be looking at the original file and would think that the file is OK, and then SAXParser.parse would parse the document without errors.
    <Book xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="book.xsd" name="MyBook">
      <Chapter name="First Chapter"/>
      <Chapter name="Second Chapter">
        <Section number="1"/>
        <Section number="2"/>
      </Chapter>
    </Book>
    <?xml version="1.0" encoding="ISO-8859-1" ?>
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:element name="Book">
    <xs:complexType>
      <xs:sequence>
       <xs:element name="Chapter" minOccurs="0" maxOccurs="unbounded">
        <xs:complexType>
         <xs:sequence>
          <xs:element name="Section" minOccurs="0" maxOccurs="unbounded">
           <xs:complexType>
            <xs:attribute name="xnumber"/>
          </xs:complexType>
          </xs:element>
         </xs:sequence>
         <xs:attribute name="name"/>
        </xs:complexType>
       </xs:element>
      </xs:sequence>
      <xs:attribute name="name"/>
    </xs:complexType>
    </xs:element>
    </xs:schema>
    public class SAXXMLParserTest
       public static void main(String[] args)
          try
             SAXParserFactory factory = SAXParserFactory.newInstance();
             factory.setNamespaceAware(true);
             factory.setValidating(true);
             SAXParser parser = factory.newSAXParser();
             parser.setProperty("http://java.sun.com/xml/jaxp/properties/schemaLanguage",
                                "http://www.w3.org/2001/XMLSchema");
             BookHandler handler = new BookHandler();
             XMLReader reader = parser.getXMLReader();
             reader.setErrorHandler(handler);
             parser.parse("xmltest.dat", handler); // does not throw validation error
             Book book = handler.getBook();
             System.out.println(book);
             reader.parse("xmltest.dat"); // throws validation error because of 'xnumber' in the XSD
    public class Book extends Element
       private String name;
       private List<Chapter> chapters = new ArrayList<Chapter>();
       public Book(String name)
          this.name = name;
       public void addChapter(Chapter chapter)
          chapters.add(chapter);
       public String toString()
          StringBuilder builder = new StringBuilder();
          builder.append("<Book name=\"").append(name).append("\">\n");
          for (Chapter chapter: chapters)
             builder.append(chapter.toString());
          builder.append("</Book>\n");
          return builder.toString();
       public static class BookHandler extends DefaultHandler
          private Stack<Element> root = null;
          private Book book = null;
          public void startDocument()
             root = new Stack<Element>();
          public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException
             if (qName.equals("Book"))
                String name = attributes.getValue("name");
                root.push(new Book(name));
             else if (qName.equals("Chapter"))
                String name = attributes.getValue("name");
                Chapter child = new Chapter(name);
                ((Book)root.peek()).addChapter(child);
                root.push(child);
             else if (qName.equals("Section"))
                Integer number = Integer.parseInt(attributes.getValue("number"));
                Section child = new Section(number);
                ((Chapter)root.peek()).addSection(child);
                root.push(child);
          public void endElement(String uri, String localName, String qName) throws SAXException
             Element finished = root.pop();
             if (root.size() == 0)
                book = (Book) finished;
          public Book getBook()
             return book;
          public void error(SAXParseException e)
             System.out.println(e.getMessage());
          public void fatalError(SAXParseException e)
             error(e);
          public void warning(SAXParseException e)
             error(e);
    public class Chapter extends Element
       public static class Section extends Element
          private Integer number;
          public Section(Integer number)
             this.number = number;
          public String toString()
             StringBuilder builder = new StringBuilder();
             builder.append("<Section number=\"").append(number).append("\"/>\n");
             return builder.toString();
       private String name;
       private List<Section> sections = null;
       public Chapter(String name)
          this.name = name;
       public void addSection(Section section)
          if (sections == null)
             sections = new ArrayList<Section>();
          sections.add(section);
       public String toString()
          StringBuilder builder = new StringBuilder();
          builder.append("<Chapter name=\"").append(name).append("\">\n");
          if (sections != null)
             for (Section section: sections)
                builder.append(section.toString());
          builder.append("</Chapter>\n");
          return builder.toString();
    }Edited by: sn72 on Oct 28, 2008 1:16 PM

    Have you looked at the XML DB FAQ thread (second post) in this forum? It has some examples for validating XML against schemas.

  • JPEG/PSD issue--I open a jpeg and edit it (levels, crop) and then "save as" and the save as option shows there are now levels in the image and it wants to save it as a .psd file or a copy with layers.  What am I doing that has these settings appear?

    JPEG/PSD issue--I open a jpeg and edit it (levels, crop) and then "save as" and the save as option shows there are now levels in the image and it wants to save it as a .psd file or a copy with layers.  What am I doing that has these settings appear?

    16bit? Pixels extending beyond the canvas? (from a crop with delete unused pixels turn off).  Have you previously been saving PSD files?
    IME you sometimes have to tell Photoshop that the first save of a session is JPG, and it remembers from there on.  The way to 'tell' Photoshop that JPG, or PDF, or PNG etc are now your preferred format is to Ctrl (Cmd) click on that format in the Save As drop down list.  So long as the file does not have parameters that your chosen format does not support, then this should work for you.
    [EDIT]  Just noticed that you did include 'Crop' in the subject line.  Do you have 'Delete cropped pixels' checked?

  • I am trying to use the "save my passords" feature and it never asks me to save them and never saves them on it's own. How do I enable this feature?

    I want to use the save passwords and login information for the websites I use frequently but am unsure how to get the program to prompt me to save them...

    Make sure that you do not run Firefox in permanent Private Browsing mode.
    *https://support.mozilla.org/kb/Private+Browsing
    To see all History and Cookie settings, choose:
    *Tools > Options > Privacy, choose the setting <b>Firefox will: Use custom settings for history</b>
    *Deselect: [ ] "Always use private browsing mode"
    There are other things that need your attention.
    Your above posted system details show outdated plugin(s) with known security and stability risks that you should update.
    *Shockwave Flash 10.0 r32
    Update the Flash plugin to the latest version.
    *https://support.mozilla.org/kb/Managing+the+Flash+plugin
    *http://kb.mozillazine.org/Flash
    *http://www.adobe.com/software/flash/about/

  • Lync 2013 + clear "Sign-In Address" and disable "Save Password" on shared account

    Hello,
    We are trying to setup Lync on a few kiosk machines that will have a shared non-admin account.  We'd like to modify Lync to not save the "Sign-In Address" and instead of showing the last persons login credentials, show "[email protected]".
    I'd also like to disable the "Save Password" check box.
    The kiosks are not on the domain, although the vast majority of our machines are on the domain and we have SSO setup and don't want to mess with how that part of the signin process is working.
    Is there a way to modify the login behavior of Lync via GPO or Task Scheduler/Scripts?
    Phillip Toynton

    Open Control Panel, click Credential Manager.
    Remove the credential for Lync account. Then you can enter the password again.
    You can uncheck save my password, the related registry key is HKEY_CURRENT_USER\Software\Microsoft\Office\15.0\Lync\SavePassword.
    But this registry can be modified by Lync users, you can’t disable it.
    Lisa Zheng
    TechNet Community Support

  • How to re-enable Beats speakers and sub woofer after configured Windows 8/Ubuntu dual boot?

    HP ENvy DV7-7240us
    Windows 8 / Linux Ubuntu Dual Boot
    No Sound through two front Beats speakers or sub woofer both operating systems after installed Ubuntu 12.10 as dual boot.
    Is there a way to at least re-enable the Beats speakers and sub woofer in Windows 8 when I boot on that OS?  I am using the UEFI as the boot manager by hitting ESC / F9,  and not GRUB2 (Linux).
    I did update to "BIOS" (UEFI) F.22 concurrently with the dual boot...possibly this has something to do with it?
    I would like to keep the dual boot,  but the loss of the Beats speakers is kind of a deal breaker,  and virtualization of Linux seems to be buggy in its own right.
    I tried re-enabling the sound through right clicking on the speaker icon in the tray, and configuring Playback devices.  The  only option available is IDT High Definition Audio Codec.  Is there another device listing for the Beats speakers that I am missing?
    Only other minor issue with the hardware I am aware of is only on the Linux side, that being no pinch to zoom on track pad, which I try not to use anyway.
    Thank you.

    Have you tried resetting BIOS settings to default? Enter BIOS by tapping/holding F10 key immediately after powering on.Reset to Default settings, usually tap F9,check bottom of screen for correct key.Save & Exit.
    ******Clicking the Thumbs-Up button is a way to say -Thanks!.******
    **Click Accept as Solution on a Reply that solves your issue to help others**

  • How do I enable guest user after disabling by accident??

    Someone had logged in under my guest account without my knowledge and I did alot of work in my photo editing software and when I realized I wasnt in my account I disabled guest log in and now I cant get into my stuff Not to mention I cant update my software bc it says others are logged in and I need to log out and if I restart my computer it says since others are logged in i might lose my stuff.  Does anyone know how to fix this?

    A true Guest User account nothing is saved or preserverd on log out.
    A User account is a different story.
    Look in your list of current user  >System Preferences>Users& Groups
    log into the user account you logged out of.
    In the help menu bar at the top of your screen search for " user account" >  set up users...

  • How do I enable text drag and drop in Mail?

    Simple enough question. I'm sure I had this at one time in my Mail app, but it doesn't work now, and I see nothing in Preferences to enable it. Can anyone tell me what I'm missing?
    Rob

    Just found the problem. The old Kensington Turbo Mouse I was using won't work with drag and drop. It doesn't work even when I dedicate one of the four buttons specifically to Drag. Attaching the regular mouse solves the issue.
    (Though not, interestingly, with the text in InDesign, the application I'm using throughout the day).
    Rob

  • How can I enable the Places and Faces Button in the Photos App?

    There is no button in my Photos App which shows Faces or Places. What do I have to do? Do I need to install iPhoto first, and then enable Faces and Places there, in order to have it on the Photos App? I am using an iPad3 WIFI only.
    Greets Fedemax

    You sync those folders from iPhoto on a Mac computer. Those are "built in" folders in the iPhotos app on a Mac. I don't use iPhoto for iOS, so I cannot comment on whether they exist in the app itself.
    Those folders will sync automatically from iPhoto if they have been selected to sync in iTunes. You don't set them up on the iPad.

  • How can I scan to PDF and then save as Word?

    Don't know if the above got through or not.
    When I scan in documents do I scan as jpg or tif when I want to convert to PDF then to MS Word?

    Hi George,
    I think I've answered this another post of yours. The best bet is to go straight from the scanner to a format that Word can read (most scanning software should offer that capability), and cut out the middleman (as much as I love Acrobat, it's not necessary in this case).
    Best,
    Sara

  • How do I change iWeb language and disable auto-correct feature?

    I am trying to capture some elements from an iWeb page with a screen capture tool, but when I write in a different language than English the words are underlined in red. Is there a way to eliminate this effect?
    Thank you!

    Menu *Edit > Spelling*

  • Selection screen, dynamic enable and disable of blocks

    Hi,
    i have several parameters in different blocks.i want to enable one block and disable other blocks depending on the radio button selection. could some one help me on this.
    for eg.
    radiobutton1.  under this text entries for date, time etc.
    radiobutton 2. under this text entries for location from, location 2,phone etc.
    so, if i select radio button 1 all the remaining text entries under other radio buttons should be disabled. how to do this.
    your help would be appreciated.
    Thanks,
    kranthi.

    Hi Kranthi,
    I am not sure what you meant by disabling all the selection screen fields. Are you saying ALL the selection screen fields or all fields that don't belong to the selected radio-button.
    Anyway, here is a sample code how you manipulate the selection screen. The key options to use are 'modif id', 'at selection-screen output' and 'loop at screen'.
    *------------------------ Selection Screen ---------------------------*
    SELECTION-SCREEN BEGIN OF BLOCK selscr WITH FRAME TITLE text-000.
    PARAMETERS: p_rad1   RADIOBUTTON GROUP rad1 USER-COMMAND a DEFAULT 'X',
                p_rad2   RADIOBUTTON GROUP rad1,
                p_rad3   RADIOBUTTON GROUP rad1.
    *-- Selection Screen for radio button 1
    SELECTION-SCREEN BEGIN OF BLOCK rad1 WITH FRAME TITLE text-001.
    PARAMETERS:     p_date   LIKE sy-datum DEFAULT sy-datum MODIF ID one.
    SELECT-OPTIONS: s_uzeit  FOR  sy-uzeit MODIF ID one.
    SELECTION-SCREEN END OF BLOCK rad1.
    *-- Selection Screen for radio button 2
    SELECTION-SCREEN BEGIN OF BLOCK rad2 WITH FRAME TITLE text-002.
    PARAMETERS: p_werks   LIKE t001w-werks MODIF ID two.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 1(6) text-003 MODIF ID two.
    SELECTION-SCREEN POSITION 8.
    PARAMETERS: p_chk  AS CHECKBOX DEFAULT 'X' MODIF ID two.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF BLOCK rad2.
    *-- Selection Screen for radio button 3
    SELECTION-SCREEN BEGIN OF BLOCK rad3 WITH FRAME TITLE text-004.
    PARAMETERS: p_matnr   LIKE mkal-matnr MODIF ID tri,
                p_verid LIKE mkal-verid MODIF ID tri.
    SELECTION-SCREEN END OF BLOCK rad3.
    SELECTION-SCREEN END OF BLOCK selscr.
    AT SELECTION-SCREEN OUTPUT.
      IF p_rad1 = 'X'.
        LOOP AT SCREEN.
          IF  screen-group1 = 'TWO' OR
              screen-group1 = 'TRI'.
            screen-input = 0.
            screen-invisible = 1.
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
      ELSEIF p_rad2 = 'X'.
        LOOP AT SCREEN.
          IF screen-group1 = 'ONE' OR
             screen-group1 = 'TRI'.
            screen-input = 0.
            screen-invisible = 1.
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
      ELSEIF p_rad3 = 'X'.
        LOOP AT SCREEN.
          IF screen-group1 = 'ONE' OR
             screen-group1 = 'TWO'.
            screen-input = 0.
            screen-invisible = 1.
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
      ENDIF.
    If you want to hide all the, I mean all except the radio-buttons, then simply loop at screen and modify every entry except the radio-button entries to screen-active 0. Something like this.
    LOOP AT SCREEN.
      IF SCREEN-NAME = 'RAD1' OR
         SCREEN-NAME = 'RAD2 OR
         SCREEN-NAME = 'RAD3'.
      ELSE.
        SCREEN-ACTIVE = 0.
        MODIFY SCREEN.
      ENDIF.
    ENDLOOP.
    Srinivas

  • My iphone says appleid disabled. how do i enable it?

    I mistakenly put in an incorrect password twice. Now my phone says my appleid id disabled and I can't update anything. How do I enable it?

    If disabled for Security Reasons
    See here  http://support.apple.com/kb/TS2446
    If not for Security reasons...
    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • How to re-enable the legacy saving warning box in Illustrator CS4

    For some things we do, we have to save them as Illustrator CS files.  One of my users used to get a warning prompt, but he did something and now he doesn't get the prompt, and therefore forgets to save as the CS version.
    I don't use Illustrator, so not sure of what box he's talking about exactly, but figured someone here might know what it is and how to re-enable it if he disabled it.

    You can reset all warnings with a button in  Preferences > General

  • Why do I have to Open and physically Save a provided .xlsx File in order to source it and process it in SSIS?

    It sounds CRAZY...but it's true and I proved it out over many tests...
    We receive a .xlsx File from an outside vendor. If we simply move the file over to our processing Path and then try to source it and process it in SSIS, we get this error...
    Exception from HRESULT: 0xC02020E8
    Error at Data Flow Task [Excel Source [1]]: SSIS Error Code DTS_E_OLEDBERROR. An OLE DB Error has occurred.
    Error code: 0x80004005
    However, if we open the file and Save It and/or Save As to our processing library path, we can source the .xlsx File and process it accordingly.
    Why is this? Is it because something funky is happening under the covers when the the vendor creates and saves the .xlsx File and then when we open and save it on our network it then cleans it up?
    Is there anyway that we can get around this? I hate for the processing clerk to have to go through what seems like a meaningless task....but I cannot think of any way around this if we cannot source the original file. And a C# Edit Script using Microsoft.Interpol.Excel
    is not possible because we are not allowed to put Microsoft Office on the Server where the SSIS Package will eventually reside.
    Any thoughts...suggestions...etc...would be GREATLY appreciated.
    Thanks for your review and am very hopeful (Holding my breath) for a reply and possible solution and answer to this strangeness.
    ITBobbyP85

    First of all...THANK YOU ARTHUR!
    You're probably sick and tired of seeing my posts out here on this.
    We are running Microsoft Office 32-bit which is why I downloaded the 32-bit driver of Microsoft Access Database Engine 2010 from...
    http://www.microsoft.com/en-us/download/details.aspx?id=13255
    Sooooo I think what you're saying is that it is a Microsoft Office 2010 .xlsx File but utilizing the 32-bit Microsoft Access Database Engine 2010 only allows me to source as Microsoft Excel 2007.
    Nowwww....this will run on a Server...soooo a couple of questions...
    1.) Are you saying I need to use the 64-bit Microsoft Access Database Engine 2010 in order to process this file without having to open and Save it? Can I do that if we're running Microsoft Office 32-bit? Will I be able to source this on the Server because
    we cannot install Microsoft Office 2010 on the Server where this SSIS Package will live and breathe.
    2.) How can I tell which Microsoft Access Database 2010 Engine is on the server where this will eventually reside and run? 32-bit or 64-bit?
    Welllll...maybe a 3rd question...
    3.) Is there anyway to get around this driver dependency? Can I create a script to bulkcopy it and it would simply take what's on the server.
    Now mind you...we DO NOT have Microsoft Office installed on our server where this will reside...a licensing issue...
    So maybe now this explains my struggles with this damn file(excuse my French and frustration)...and why I was using a C# Edit Script to Open and Save the File until I then deployed it to the server and the Microsoft.Office.Interop.Excel DLL was not available
    on the Server because we cannot install Microsoft Office on the Server.
    Sooooo it seems as though I'm back at square one.
    UGH!
    Any additional help you can suggest or even if we can continue this "offline" would be GREATLY GREATLY appreciated.
    Thanks!

Maybe you are looking for

  • PO  NUMBER NOT GETTING UPDATED at MIRO level

    Dear Freinds, Pl advise for the below scenario. 1.PO made for 100 qty's thru ME23N 2.MIGO done for 50 qty's <u><b>( here PO numb appears in the migo doc)</b></u> 3.Part II Excise entries done thru J1IEX for 50 qty's  <u><b>( here PO numb appears in t

  • A problem with volume control on a third party earphones

    I have an old iPhone 4 that I use mosly for music and I recently bought a new pair of headphones (Bidenuo G380) and there is a problem with the buttons on it. Whenever I press any of the buttons while music is playing on my iphone, the volume goes up

  • Paper source auto-select problem

    Hi, I just set up a new MF6160DW, on a Windows 7 PC, and it seems to work well except for 1 setting I can't understand. I'd like the printer and copier to use drawer 1 for all printing, but to auto-detect paper in the multi-purpose tray, and prioriti

  • Disabling font tab in InDesign CS5 Control panel

    Hi, Is there any option to disable the Font change option in the InDesign CS5 Control panel. That is the user should not change the font using Control panel. Thanks, Gopal

  • Can't edit effect parameters

    This just started happening today. I can't click on the effects symbol that edits the individual parameters for the effect. The window doesn't pop up. Any ideas?