Inserting a button "save under".

Hello

I would like to include a button "save under" at the end of my form. Don't know what javascript is for this. I created the button, I'm in the Script Editor and that you have selected "postSave", not sure what's next...

Thanks in advance for your answer.

Jenn

Yes... but the command is:

app.execMenuItem ("SaveAs")

and make sure you have set the JavaScript language (top right of the script editor).

Paul

Tags: Adobe LiveCycle

Similar Questions

  • Why the button "Save as" does not work in new Acrobat Reader? Very annoying...

    Why the button "Save as" does not work in new Acrobat Reader? Very annoying...

    I have already updated to the last DC v15.009.20077...

    So I found a way, if I do it just right, it works (with the file, click the "tiny" file and then save as. I made the mistake of first pressing the home much more first. Really not intuitive or easy to use even if... Looks like you have replaced the button "save under" with the "save in the cloud." We use mettle at work, and the cloud of Adobe is irrelevant for me...

  • I can't "save under" all of a sudden and I need this option works in my work.

    I can't save my PDF files "save under" all of a sudden - please advise.

    Since this is a secure document, the button "save under" is probably gray because of the security settings. To see what is limited, look at the "Document Summary of Restrictions" box on the Security tab.  A password to limit the actions of a user can do with the PDF (between opening the file to make changes to the file and therefore, no "save under"). These parameters should be actively requested by a person, more generally the author, but anyone who has unlimited access to a file can apply security settings.

  • Issue size PDF after click on the button "Save as".

    Hello everyone, I have a pdf file that is about 180 KB.

    After clicking on a button "save under", that I created, a small calculation script is run and the file, after registration, jumps to 1, 2Mb.

    Any thoughts on how to avoid this? Javascript calculations are simple calculations (capital plus interest and a penalty).

    Thank you everyone for the help!

    This is usually caused by policies that have been added to your form fields.

    You use a non-standard font?

  • The button "Save as" not working en netbook

    installed photoshop cs5 on my netbook and it has worked well but stopped working days after the button "save under ' try put it back, but still doesn't work do not

    Sorry my bad English

    What is your screen resolution?  I suspect that you changed it.

    Your screen should at least 768 pixels vertically, or the Save dialog box under will not come.

    -Christmas

  • "Save under" freezes PS3 - what to do?

    When wanting a Board contact or photomerge to bridge > tools > Photoshop > then contact sheet II or Photomerge, he opens the PS3 and automatically brings up the appropriate context menu and execute the commands - BUT after the end of the action and show me the result, I am unable to save the new file are in the menu or the buttons ' save under. : Ctrl + Shift + S. I see a Flash of pane that disappears, and then the PS3 freezes.

    It worked normally... so I started a new Contact sheet, it started doing this and now continues with photomerge too.

    I'm afraid I have to unload and reload the software, but I hope some of you can tell me an easier solution.

    Ideas?

    Looks like a dialog box is off screen.

    Try typing space or Esc to cancel.

    Then try to reset your preferences as described in the FAQ.

    http://forums.Adobe.com/thread/375776?TSTART=0

    You must physically delete (or rename) the preference files or, if you use the Alt, Ctrl, and shift, don't forget you get a confirmation dialog box.

    This resets all settings in Photoshop default.

  • A JPEG of script "save under".

    I do work for my business and I need to do what is essentially the stop-motion animation... I have my Basic .psd file, I move a layer inside slightly, save it as a .jpeg and repeat. Repeat, repeat and repeat.

    However, it takes much too long to get through dialogue "save under", change the file name and change the type of file in jpeg every time.

    I don't know anything about scripting (writing OR using them), but I've read it's the solution to my problem here... a script that will save a jpeg copy of my file .psd with a new name.

    In addition, it would be GREAT if that can be assigned to a key or combination of keys... as I hit him command + ~ and it runs the script.

    Can you guys help me?

    NB: This is for Photoshop CS3 or better!

    Copy and paste the script in ExtendScript Toolkit, it is installed with Photoshop

    This utility is located in the proper folder: -.
    PC: C:\Program Files\Adobe\Adobe utility
    MAC: /Applications/Utilities/Adobe utilities

    The script must be registered in: -.
    PC: C:\Program Files\Adobe\Adobe Photoshop CS #\Presets\Scripts
    NB: Vista and Windows 7, you will need to save it somewhere else and copy it to this folder because of permissions.
    MAC: Applications/Adobe Photoshop CS #/ presets/Scripts settings

    If Photoshop is open, close and restart Photoshop so that it can pickup the new script.

    You can create an action to call the script
    Start recording a new action and in the dialog box action palette select "Insert Menu Item" then file - Scripts and select the script.
    stop recording.
    This action can be given a function key to run it.

    Another way is to create your own keyboard shortcuts:
    Edit - keyboard shortcuts - file, go down until you see the script and assign your own shortcuts.

    On first use, it will let you choose the suffix bib.
    The files will be saved as OriginalFileName #0001.jpg OriginalFileName #0002.jpg etc...
    The files will be saved in the same folder as the original document.

    This first script is necessary to reset the counter to zero, when you want to work on the following document.

    app.eraseCustomOptions( 'a7ba92a0-d6f8-11df-937b-0800200c9a66');
    

    It is the main script...

    main();
    function main(){
    if(!documents.length) return;
    //Reset Custom Options.
    //app.eraseCustomOptions( 'a7ba92a0-d6f8-11df-937b-0800200c9a66' ); return;
    Count =0;
    try{
    var desc1 = app.getCustomOptions('a7ba92a0-d6f8-11df-937b-0800200c9a66');
    Count = desc1.getInteger(0);
    }catch(e){
    var win = new Window("dialog","File increment");
    win.pnl1 = win.add('panel');
    win.grp1 = win.pnl1.add('group');
    win.grp1.st1 = win.grp1.add('statictext',undefined,"File Suffix Number start...");
    win.grp1.et1 = win.grp1.add('edittext',undefined,"1");
    win.grp1.et1.preferredSize=[50,20];
    win.grp1.et1.onChanging = function() {
      if (this.text.match(/[^\-\.\d]/)) {
        this.text = this.text.replace(/[^\-\.\d]/g, '');
      }
    }
    win.grp10 = win.pnl1.add('group');
    win.grp10.process = win.grp10.add('button',undefined,'Okay');
    win.grp10.process.onClick = function(){
        Count = Number(win.grp1.et1.text);
        win.close(1);
    }
    win.center();
    win.show();
        }
    try{
    var Name = decodeURI(activeDocument.name).replace(/\.[^\.]+$/, '');
    var Path = decodeURI(activeDocument.path);
    var saveFile = File(Path + "/" + Name + "#" + zeroPad(Count,4) + ".jpg")
    SaveJPEG(saveFile, 8);
    Count++;
    var desc2 = new ActionDescriptor();
    desc2.putInteger(0, Count);
    app.putCustomOptions('a7ba92a0-d6f8-11df-937b-0800200c9a66', desc2, true );
    }catch(e){alert(e + "\r@ Line " + e.line);}
    }
    function SaveJPEG(saveFile, jpegQuality){
    var doc = activeDocument;
    if (doc.bitsPerChannel != BitsPerChannelType.EIGHT) doc.bitsPerChannel = BitsPerChannelType.EIGHT;
    jpgSaveOptions = new JPEGSaveOptions();
    jpgSaveOptions.embedColorProfile = true;
    jpgSaveOptions.formatOptions = FormatOptions.STANDARDBASELINE;
    jpgSaveOptions.matte = MatteType.NONE;
    jpgSaveOptions.quality = jpegQuality;
    activeDocument.saveAs(saveFile, jpgSaveOptions, true,Extension.LOWERCASE);
    }
    function zeroPad(n, s) {
    n = n.toString();
    while (n.length < s) n = '0' + n;
    return n;
    };
    
  • Page "save under" appears when I try to print from Firefox

    When I use my Verizon DSL and Firefox (this doesn't happen if I use Explorer int.) and I wish to print information from the internet, I do a Ctl P for print. Instead of print, I get a page "save under" I can not help to appear. The page includes: "save under" in the upper part with a box of savings to (E.g.: documents), then has a list in any of the 'name', 'Update', 'Type', 'Size' and 'Tags' in the upper part. Then, a list of items such as games, my stationery, new folder, Sansa Updater. Then at the bottom there is a list for 'File name' with an area for the name. Then under that a 'save As Type' (PDF). Then a backup or the Cancel button.

    This has happened

    Each time Firefox opened

    Is a month ago

    I can't print anything either on Firefox but on IE everything prints fine. I get as much better Firefox so would like a solution to my problem.

  • "Save under" operation on an Excel (Urgent)?

    Hi all

    I have an excel file in my project directory. I want to save or make a copy of this file in the directory with a different name, as that is, I want to do "save under" operation above each time the user clicks on a button in excel. Thanks in advance

    Best regards.

    Umer.

    If you only want to save the file under a new name, in the callback button you can:

    1. (Optional) Use FileSelectPopup to let the user choose the file to operate on. Function returns the full path of the file in a string variable

    2. Use SplitPath to extract the name of the file and edit it accordingly with standard string functions

    3. Use MakePathname to rebuild the complete folder path in a new string variable

    4. Use CopyFile to operate the copy

    All this does not open the file to examine its contents.

  • Save under...

    When I go to save a file... save under... It opens with always save in html format. How can I change that I don't always have to click on the arrow down and save it in format of messages to oulook?

    Thank you.

    Here is an article including a link on how to change the default save as type in Outlook (it's one will move it): http://office.microsoft.com/en-us/help/HP052428051033.aspx.  I'm not sure this will do what you want it to do, but it's all I could find.

    If this does not help, please transfer your question in the Discussion of the Office group at: http://www.microsoft.com/office/community/en-us/default.mspx?dg=microsoft.public.outlook.general&lang=en&cr=US where experts in Outlook will be more than happy to help you with your question.

    Good luck!

    Lorien - MCSA/MCSE/network + / has + - if this post solves your problem, please click the 'Mark as answer' or 'Useful' button at the top of this message. Marking a post as answer, or relatively useful, you help others find the answer more quickly.

  • Why Adobe PDF opens the dialog "save under" when you simply save a file

    When I make changes to a file and close (or just press 'Ctrl + S'), rather than overwrite the current file with the one Adobe PDF, newly edited now opens the dialog "save under" and I have to navigate to the folder that I need. Why does it replaces the file, as it used to? This behavior can be fixed?

    Re: the various save dialog box, try this: go to the menu, then Preferences, then click the general tab, on the left. On the right, uncheck the radio button 'Show online storage in check'. Press OK in the Preferences dialog box, and then try to save again. Now, the platform save dialog box must be indicated directly.

    For the other issue you reported (Save as are save under), you can tell us:

    1 do you have permissions to modify the file. On OS X, if the file is locked or is the file "belong" to another user?

    2. can you choose the same file that you opened when you are prompted to save and are able to replace that?

  • Insert a button on the review Quiz page?

    I am using captivate 7. I want to hide the button submit on the review page and have a custom button that I am able to add advanced actions. Is this possible? Is it also possible to use a function of calendar on the review page. Ideally what I'm trying to do, is to have a message and prevent anyone to click on the button continue until after that that they have read the message. Once they have clicked on the button continue, I would like a message appears on the screen asking if they printed their results. Yes, will be continued on the next page. Don't get back to the review page to give them the ability to print.

    Is this possible? If so, how?

    Hello

    You can not insert the button on the question slide and quiz results slide.

    However, you can insert intelligent use of form and check a box under its properties, and then under Actions > hit > you can set execute advanced action.

    In your scenario, it seems that you must create a conditional action using if - else conditions.

    Kind regards

    Ajit

  • Why are there no bitmap option on my menu "save under" down?

    I am using (or trying to use) Photoshop CC (14.2.1 x 64) to produce small bitmaps for a .net Micro Framework device. The memory is at a premium, so I need to produce assets from display to 16-bit RGB 565 format. I have my document set up in RGB (I tried 32 RGB and RGB 16) but when I come to "save under ' bitmap / bmp isn't one of the options available. Where is he?

    Screenshot 2014-07-25 00.54.58.pngScreenshot 2014-07-25 00.54.33.png

    You try to save an image in a still smaller than RGB 8-bit/channel format.

    Switch your document RGB 8-bit/channel and BMP format will be at your disposal.  In the PMB to save dialog box, you can choose the format reduced thanks to the [Advanced Modes] button.

    -Christmas

  • Photoshop "save under" does not not on dialogue Parallels

    I have Photoshop CS5 running on a MacBook OS 10.8 Parallels/Windows XP.  When I try to "save under", the dialog box does not come to the top.  I installed the latest update.  Other CS5 programs (for example, Dreamweaver and Fireworks) do not have this problem.  Also, when I try to do a 'Save for Web and Devices', the dialog box IS launched, but it is oversized for the window and cannot be resized to make accessible command buttons.

    Any suggestions would be welcome.

    Hi Noel!  Thanks for the suggestion.  I tried to play with the resolution of the window in the control panel.  This made a mess... but in the process, I discovered that if I run Photoshop in Coherence mode (i.e. not interpolated with Windows ' window'), the dialog box shows up.  So, your suggestion regarding the resolution of the window solves the problem.

    Thank you!

  • "Save under" no longer works

    Since last week my CS3 version is no longer will allow me to choose "save under" and change the name of the file work on, the button is shaded on.  As soon as I choose a name of file already existing in the listed folder does the active button.  I can't just change the name of the file appears already in the field.  I think it is a virus, but the research is empty.  Given that I have not upgraded or changed lately, I'm looking for someone who has this problem.

    Mat-text:

    Are Photoshop and OS fully updated and have you performed routines normal troubleshooting (trashing prefs in now command-alt-shift/ctrl-alt-shift key while starting Photoshop, disable plugins 3rd party, the system maintenance like permissions repair, cleaning of the caches, validation of the fonts, etc.)?

Maybe you are looking for