Edit action on purple submit button

I am creating interactive PDF forms, and I see that Acrobat adds a submit button in the purple message bar, but how do I add or edit the action for that submit button? It is only visible when in preview mode so I am unable to double click and add an action (such as email) like when creating a new button within Properties.

No Jay. The embedded buttons on quiz slides are not normal buttons.
If you tell what you want to achieve? Because after the two-step process (submitting) either the action specified under Success or Last Attempt will be executed. You can replace the default action 'Continue' by an Advanced action.
Question Question Slides in Captivate - Captivate blog
Lilybiri

Similar Messages

  • The action for the submit button

    I know that when I insert a Submit button I need to go to the
    property inspector and point to an action file so it can receive
    the data and redirect the visitor to a confirmation page, but I
    have no idea how to make that file. Is there a template for
    something like that?

    quote:
    Should the button be processed in server for redirecting?
    I have added behaviors like Add Java scripts, Pop up Window
    but they are not seen when the submit button is clicked, neither
    would I receive any mail redirected.
    Actually, where would the "action for redirecting" for the
    submit button be processed? Does it depend on CS3 Program or the
    Server?
    Thanks for helping with instuctions.

  • Submit button (Action)

    I was curious if there was a way to have two (or more actions) connected to a submit button.  With the action tool, I know I am limited to one.  is it that way if I create a javascript?

    <form action="xxx.php" method="post">
    email: <input type="text"><br>
    <button type="submit">Submit Now</button>
    </form>
    This form action stands for submit button action. It may be either a PHP scipt that is connected to a database or an email account.

  • Controlling action on Submit button

    I have a page with fields for data and a submit button,when I click the submit button the data will be passed to another jsp page from where the updation or insertion takes place based on the condition,When this process is being done if the submit button is clicked repeatedly it is misbehaving.Any Idea as how to stop the action on the submit button once the control goes to the next jsp page.

    with some javascript you can disable the submit button just after the first time it was clicked, like this :
    <form name="xxx" action="yyy" onSubmit="this.submitButton.disabled=true" >
    regards

  • Can a submit button carry out more than 1 action ?

    I want to give show feed back after a survey question but I want to do this whilst the answer that the user has given is still on the page.
    I have assigned a show comand to the submit button which makes a text box visable however the play head carries on and the slide progresses to the next one.  Is there a way to pause the time line and advance on a click after the feedback, what I think I want is for the submit button to carry out several action  or am I going about this the wrong way?

    Hello,
    Could you tell if you are using the default Question slides for this survey question or did you create your own slide using standard objects?
    I'm a bit puzzled about it because you mention the 'Submit' button, that is why I supposed you are using a default Question slide. You can assign an advanced action which can have more than one action of course. But this will not solve your issue. If you want to stick with default question slides that allow you limited control I could make this suggestion:
    create the hidden text caption,
    increase the default duration of the question slide; typically it will pause at 1.5sec, increase the slide duration so that the text caption that will show up stays long enough for the user to read it
    show the text caption for the rest of the slide
    attach the success action to the Submit button as you did to show the TC
    When the user clicks on Submit, the Text Caption will pop up  but the playhead will continue till the slide is finished. AFAIK you will not be able to stop it, but now the user will have sufficient time to read.
    The best solution is to create your own survey slides, then you can add as many interactive objects as you wish.
    Lilybiri

  • No submit button in distributed form - JavaScript help

    I have creted a from in Live Cycle Designer. After distribution submit button is not visible in Acrobat and Reader. I've looked at the form JavaScript and find out this part of code which probably hide submit button in Acrobat 9:
    showAutoGenSubmitBtn = function(bShow)
        var autoGenSubmitName = "%AUTO_GEN_SUBMIT_NAME%";
        var fld = this.getField(autoGenSubmitName);
        if (fld != null)
            var b= this.dirty;
            if (bShow)
                fld.display = display.noPrint;
            else
                fld.display = display.hidden;
            this.dirty= b;
    // Hide the auto-generated submit button for Acrobat/Reader >= 9.0
    if (app.viewerVersion >= 9)
        showAutoGenSubmitBtn(false);
    else
        showAutoGenSubmitBtn(true);
    I am not familair with JavaScript so I would apprecite if someone can help me how to edit it to make submit button visible.
    Below is a complete JaveScrip of mentioned form.
    Thanks
    //@@FORMSWORKFLOW auto-generated script
    AdobePatentID="B643"
    var AdobePatentID = "AdobePatentID=\"B643\"";
    // Show a dialog to ask the user's name and email during submit.
    askUserIdentity = function(doc)
        // string constants
        var dlgStrings =
            sDlgTitle:          "Send Form",
            sEmailLabel:        "&Email Address:",
            sNameLabel:         "Full &Name:",
            sSubmitLabel:       "&Send",
            sToLabel:           "To:",
            sSubjectLabel:      "Subject:",
            sSubjectContent:    "Submitting Completed Form",
            sAttachmentLabel:   "Attachment:",
            sFromLabel:         "From:",
            sErrorEmailRequired:"Please enter a valid email address.",
            sErrorNameRequired: "Please enter your name."
        var dlgElems = [];
        dlgElems[dlgElems.length] = {
            type: "view",
            align_children: "align_left",
            elements:
                    type: "view",
                    align_children: "align_row",
                    elements:
                            type: "static_text",
                            name: dlgStrings.sToLabel,
                            width: 80,
                            bold: true,
                            font: "dialog"
                            type: "static_text",
                            item_id: "sdto",
                            width: 270,
                            font: "dialog"
                    type: "view",
                    align_children: "align_row",
                    elements:
                            type: "static_text",
                            name: dlgStrings.sSubjectLabel,
                            bold: true,
                            width: 80,
                            font: "dialog"
                            type: "static_text",
                            name: dlgStrings.sSubjectContent,
                            width: 270,
                            font: "dialog"
                    type: "view",
                    align_children: "align_row",
                    elements:
                            type: "static_text",
                            name: dlgStrings.sAttachmentLabel,
                            bold: true,
                            width: 80,
                            font: "dialog"
                            type: "static_text",
                            item_id: "atch",
                            width: 270,
                            font: "dialog"
                    type: "gap",
                    height: 5,
                    width: 350
                    type: "static_text",
                    name: dlgStrings.sFromLabel,
                    bold: true,
                    font: "dialog"
                    type: "static_text",
                    name: dlgStrings.sEmailLabel,
                    bold: true,
                    font: "dialog"
                    type: "edit_text",
                    item_id: "emal",
                    width: 250
                    type: "static_text",
                    name: dlgStrings.sNameLabel,
                    bold: true,
                    font: "dialog"
                    type: "edit_text",
                    item_id: "name",
                    width: 250
                    type: "gap",
                    height: 5,
                    width: 350
                    type: "ok_cancel",
                    ok_name: dlgStrings.sSubmitLabel
        var desc = {
            resourceContext: "AcroForm",
            description:  {
                name: dlgStrings.sDlgTitle,
                elements: [
                        type: "view",
                        align_children: "align_left",
                        elements: dlgElems
        desc.initialize = function(dialog)
            var METADATA_ANNOT_NAME = "adhocFormState";
            var PROP_INITIATOR = "initiator";
            var initiator;
            var annot = doc.getAnnot(0, METADATA_ANNOT_NAME);
            if (annot != null) {
                var arrProps = new Array();
                arrProps = annot.contents.split(";");
                initiator = getProperty(arrProps, PROP_INITIATOR);
            var decodedFileName = unescape(doc.documentFileName);
            var initVars =
                sdto: initiator,
                atch: decodedFileName
            dialog.load(initVars);
        desc.validate = function(dialog)
            var values = dialog.store();
            if (values.emal == "") {
                app.alert(dlgStrings.sErrorEmailRequired);
                return false;
            if (values.name == "") {
                app.alert(dlgStrings.sErrorNameRequired);
                return false;
            return true;
        desc.commit = function(dialog)
            this.result = new Object;
            var values = dialog.store();
            this.result.name = values.name;
            this.result.email = values.emal;
        var ret = app.execDialog(desc);
        if (ret == "ok")
            return desc.result;
        else
            return null;
    askEmailClient = function(doc)
    // string constants
        var dlgStrings =
            sDlgTitle:      "Select Email Client",
            sDlgText:       "Please indicate the option which best describes how you send mail.",
            sDesktop:       "&Desktop Email Application",
            sDesktopDesc:   "Choose this option if you currently use an email application such as Microsoft Outlook Express, Microsoft Outlook, Eudora, or Mail.",
            sInternet:      "&Internet Email",
            sInternetDesc:  "Choose this option if you currently use an Internet email service such as Yahoo or Microsoft Hotmail. You will then need to save your form and return it manually to [email protected] using your Internet email service."
        var dlgElems = [];
        dlgElems[dlgElems.length] = {
            type: "view",
            align_children: "align_left",
            alignment: "align_fill",
            elements:
                    type: "static_text",
                    name: dlgStrings.sDlgText,
                    width: 350,               
                    font: "dialog"
                    type: "radio",
                    name: dlgStrings.sDesktop,
                    item_id: "rad1",
                    group_id: "rgrp",
                    bold: true,
                    font: "dialog"
                    type: "view",
                    align_children: "align_top",
                    elements:
                            type: "gap",
                            width: 20
                            type: "static_text",
                            name: dlgStrings.sDesktopDesc,
                            wrap_name: true,
                            width: 342,
                            font: "dialog"
                    type: "radio",
                    name: dlgStrings.sInternet,
                    item_id: "rad2",
                    group_id: "rgrp",
                    bold: true,
                    font: "dialog"
                    type: "view",
                    align_children: "align_top",
                    elements:
                            type: "gap",
                            width: 20
                            type: "static_text",
                            name: dlgStrings.sInternetDesc,
                            wrap_name: true,
                            width: 342,
                            font: "dialog"
                    type: "gap",
                    height: 5,
                    width: 350
                    type: "ok_cancel",
        var desc = {
            resourceContext: "AcroForm",
            description:  {
                name: dlgStrings.sDlgTitle,
                width: 250,
                elements: [
                        type: "view",
                        align_children: "align_left",
                        elements: dlgElems
        desc.commit = function(dialog)
            this.result = new Object;
            var values = dialog.store();
            this.result.send = values.rad1;
            this.result.save = values.rad2;
        var ret = app.execDialog(desc);
        if (ret == "ok")
            return desc.result;
        else
            return null;           
    AdobePatentID="B643"
    // set a new property value to a property in the specified array.
    setProperty = function(arrProps, propName, propValue)
        var i;
        var bSet = false;
        for (i = 0; i < arrProps.length; i++) {
            var propParts = new Array();
            propParts = arrProps[i].split(":");
            if (propParts[0] == propName) {
                propParts[1] = propValue;
                arrProps[i] = propParts.join(":");
                bSet = true;
                break;
        if (!bSet)
            arrProps[arrProps.length] = propName + ":" + propValue;
    AdobePatentID="B643"
    // get the value for a property in the specified array.
    getProperty = function(arrProps, propName)
        var i;
        for (i = 0; i < arrProps.length; i++) {
            var propParts = new Array();
            propParts = arrProps[i].split(":");
            if (propParts[0] == propName) {
                return propParts[1];
        return null;
    AdobePatentID="B643"
    showAutoGenSubmitBtn = function(bShow)
        var autoGenSubmitName = "%AUTO_GEN_SUBMIT_NAME%";
        var fld = this.getField(autoGenSubmitName);
        if (fld != null)
            var b= this.dirty;
            if (bShow)
                fld.display = display.noPrint;
            else
                fld.display = display.hidden;
            this.dirty= b;
    // Hide the auto-generated submit button for Acrobat/Reader >= 9.0
    if (app.viewerVersion >= 9)
        showAutoGenSubmitBtn(false);
    else
        showAutoGenSubmitBtn(true);

    I'm distributing the form in Acrobat Pro 9.
    I created the form in Live Cycle Designer.  Save, then open in Acrobat pro.  Extend Features to Acrobat Reader, click the drop down box on Forms and hit distribute.  I save a local copy.  When I open the distributed form the buttons do fall silent, the Submit Button on the purple line up top still works, but that doesn't appear in reader and the people who will be completing the form all use reader.  Any suggestions for a fix?
    I'd like to distribute because that automates the tracking.  It works undistributed.

  • Submit button has no code after download

    I have made a form with submit button. When clicked it will generate the date and send the form in an email.
    With one user (at least) after downloading the form from a website the actions on the submit button have gone. I know this because they sent me the form. Has anyone seen this before, or know why it is happening.

    This will happen if the user saves the form with Preview on the Mac, and perhaps other PDF viewers.
    What does it show for: File > Properties > Description > PDF Producer

  • I need to throw an error message if the terms&conditions checkbox is not checked on click of Submit Button. Can anyone suggest.

    I need to throw an error message if the terms&conditions checkbox is not checked on click of Submit Button in webdynpro java. Can anyone suggest.

    My Apologies. The simplest way- write the following code in the action of the Submit button-
    if (<check box not checked>)
    wdComponentAPI.getMessageManager().reportException("Please accept Terms and Conditions to continue",false);
    else
         continueExecution();
    The exception message will be shown on top of the view.
    You may like to use Message Area UI element and place it at the bottom of the WD4J view to show our exception message at the bottom of the view.
    I hope this helps !
    Cheers,
    -Amol Gupta

  • Can I send 2 separate emails from one Submit Button?

    Have a referral form that an employee completes referring a candidate for a specific position. 
    Fields are:  EmployeeName, EmployeeEmail, Candidate, Position, ReqNo.
    I created a submit button (used regular button and changed it to a submit and entered an email address). The form is sent to this email address in a PDF format.  This works great.
    Now at the same time I would like send a message to the employee acknowledging that we have received their referral -utilizing their email address from the form. 
    Is there anyway that I can combine both of these actions on the Submit button I already have created?

    To do so i guess you could use this to send an email in ur regular button (not a submit button) in the click event
    var oDoc = event.target;
                                       oDoc.mailDoc({
                                             bUI: false,
                                             cTo: "Email here!",
                                                                               cCC: "",
                                                                               cSubject: "Insert Subject Here!",
                                                                               cMsg: "Before submiting the email, include attachments 1, 2 and 3:\n"
    and then you can resend an email again with the code above repeated

  • SUBMIT BUTTON BROKE ON EARLY VERSION ANDROID PADS

    You
    We are experiencing a problem where we created a form on formscentral from scratch not an import and on an android phone is works OK but on any of our android pads it does not work, the send button is inoperative and if they email or save the forms they stay blank. We have Reader 11.5 (On my Ipad it works OK) please advise, we currently have a full adobe subscription.

    Hi acrojack,
    The submitForm action currently supports submitting a document to Adobe FormsCentral only. The cURL must be an Adobe FormsCentral target.
    To add an action to button to send the form as an email, you can perform the following steps:
    Add the "Submit a form" action to your Submit button.
    Enter "mailto:" (including a colon) followed by email recipient(s).
    Select "PDF The complete document".
    More details about JavaScript submitForm to Adobe FormsCentral can be accessed at Doc - JavaScript for Reader Mobile API Reference (Android)
    If you are still observing issues, please send the form to [email protected] so that we may investigate the same.
    Thanks,
    Adobe Reader Team

  • Edit email for submit button and Javascript?

    How can I change an email address attached to a submit  button on a previously created form? 2) How can I see if JavaScript is being used with form? A prior team member created interactive forms with a submit button. Email address attached to button needs to be updated. I tried to edit in Acrobat Pro by double  clicking the button to access the properties panel, but it doesn't open. If I recreate the form to amend the address, my file size is about 1/3 of the original which leads me to believe there is JavaScript.

    Thank you. My version of Adobe Acrobat Pro X  Tools- Forms edits in
    LiveCycle Designer after the form has been created and saved.. There is no
    other edit option as shown in the screen print below. The action wizard in
    Pro doesn't seem to apply in this case. I had tried right clicking the
    button in both Pro and LiveCycle previously to no avail. However, when the
    form opens in LiveCycle, I just figured out that there is an object window
    that allowed me to modify the email address.
    However, I don't understand the file size difference or even how to find
    the JS. We both used the same original word docx. His file size is 47K and
    my recreated file is 19K, a big difference. I didn't compress mine. Any
    thoughts on what is causing the difference? The forms are on a client's
    website for external users to complete so load time is still important.
    Thanks,Vickie
    On Fri, May 23, 2014 at 4:24 AM, Gilad D (try67)

  • UIX Edit Search Criteria Submit Button operation

    When drag-drop a “Search Form” from a data control onto a UIX page JDeveloper will automatically wire up an “Edit Criteria” section. Inside this section is a <labeledFieldLayout> with search attributes and a <submitButton text="Submit"/>.
    This submit button has no event associated or defined for it. So, what code is really getting executed here when this button is pressed?
    I would like to replicate the actions that are occurring when pressing this button in a separate event in the event handlers section of the UIX page.
    Any help or even examples would be greatly appreciated.

    Hooray, I figured it out!
    The trick to this is pretty simple. This particular view object has a query that can ONLY be executed with parameters. The query was getting executed BEFORE the parameters had been set with values from the session scoped managed bean. So, of course, it was failing. In the pagedef there is an iterator referencing the VO, and an invokeAction referencing the ExecuteWithParams method of that VO.
    All I had to do was set the Refresh attribute of the iterator to "deferred", and the Refresh attribute of the invokeAction to "ifNeeded". That way, the iterator doesn't execute the query, but the ExecuteWithParams does.

  • What action besides the mailto: one will work with a submit button to activate the required fields?

    I have a submit button that uses the mailto: function to activate the required fields property on a pdf fillable form, but our users would prefer that the form not generate an email. Please let me know what I could replace the mailto: action with so the submit button will only activate the required fields proptery.
    Thanks for the help!
    Ken K. 

    Whatever is running on the server does not have to be PHP, any mechanism
    that can accept a HTTP request can handle your form content. You have a
    choice between using the "normal" HTML forms submission format, or you can
    submit a FDF or XFDF file to your server. I've used Perl, PHP, Microsoft's
    .NET and good old Unix shell scripts to accept and process PDF forms
    submissions.
    If you don't know how to implement the server portion, you will need to
    work with somebody who can do that for you. How this is best done depends
    on what server system you are using, and potentially what limitations your
    web hosting provider is forcing you to live with.
    Karl Heinz Kremer

  • Submit button and corresponding action

    I know that when I insert a Submit button I need to go to the
    property inspector and point to an action file so it can receive
    the data and redirect the visitor to a confirmation page, but I
    have no idea how to make that file. Is there a template for
    something like that?

    does your hosting have a pre-installed form->email script?
    Check their
    FAQ/support pages or any hosting control panel the site may
    have.
    if not- what server side scripting can be used on this
    hosting? asp/php/??
    Alan
    Adobe Community Expert, dreamweaver
    http://www.adobe.com/communities/experts/

  • Two actions for submit button

    Hi
    I'm new to modifying pdfs so please excuse me.  I have a form with a submit button and the action associated is
    I want to add this script:
    but the form will only do 1 action in the event node.  So how can I make it show the message box and then do the submit? please note that the forum removed the script tags

    Hello,
    You can link your button actionListener to a manageBean method and into this method, call your to ExecuteWithParams binding operation like
    public void actionListener(ActionEvent actionEvent) {
         BindingContext bindingContext = BindingContext.getCurrent();
         BindingContainer bindings = bindingContext.getCurrentBindingsEntry();
         OperationBinding opBinding1 = ((DCBindingContainer)bindings).getOperationBinding("ExecuteWithParams1");
         opBinding1.execute();
         OperationBinding opBinding2 = ((DCBindingContainer)bindings).getOperationBinding("ExecuteWithParams2");
         opBinding2.execute();
    }This also can be included into a valueChangeListener binded to an input component for example
    public void changeListener(ValueChangeEvent valueChangeEvent) {
         BindingContext bindingContext = BindingContext.getCurrent();
         BindingContainer bindings = bindingContext.getCurrentBindingsEntry();
         OperationBinding opBinding1 = ((DCBindingContainer)bindings).getOperationBinding("ExecuteWithParams1");
         opBinding1.execute();
         OperationBinding opBinding2 = ((DCBindingContainer)bindings).getOperationBinding("ExecuteWithParams2");
         opBinding2.execute();
    }Jack

Maybe you are looking for

  • "Cannot connect to itunes store" error on my  ipod touch 4g?

    i this error always from the day one when i bought  ipod touch 4g but i dont worry bcoz at that time iTunes was not available in India but a week ago it finally reached India but it still give me this error! kindly help me ! HOW to use itunes' music

  • My Admin password doesn't work anymore after i restored Data from TMBackup

    Hi! Got lots of Problems with the new Leopard update 10.5.7 . I needed to re-set up my MacBook and my G5. I thought it's not a problem, because i did my Time Machine Backups quiete frequently. Problem on my Macbook was, that my Data get restored on a

  • Album art not matching correctly between iTunes and iPhone.

    So as much as this might not seem as an issue for some, I notice that my album artwork in iTunes does not always match up with the album art on my phone. If I think that some artwork for a song or album is unappealing or not matching, I will change i

  • Display get unresponsive on disconnecting a call

    HI, Recently i have purchased i phone 5s and I found that display screen get dim brightness and become unresponsive on disconnecting some calls and it restore after restarting the phone.

  • Oracle Work Flow Mailer configuration to use O365 mailbox

    Our mailboxes are now in O365 and we would now like to configure our Oracle 11g to use work flow mailer with Office 365 mailbox configuration. There has to be someone that has done this successfully that can share your configuration. Have not had too