Submit Button - Email & URL

Hello, I'm rather new to working with Adobe LiveCycle Designer. I have installed a sucessful e-mail button to the form, but I would also like to have it enter a webpage after the user had submitted their form. I know that this is possible since I've done this with Acrobat. I'm fine with installing scripts, since my form has a few existing functions. I've searched for the url function - if any, but couldn't locate it.
I do have another somewhat relevant question. For better versality, should I export the file to static version 6 or 7? I would like to know if it'll be able to keep the same functions.
I appreciate the assistance!

Hi,
The command you are looking for is:
app.launchURL("http://www.assurehsc.ie/blog", true);
New features are added all the time to the XFA Specification, so if you save your form for an older version, then some of the features that you build into your form may not work.
You can set the target version of the form in the File > Form Properties > Defaults tab:
But then you should look in the Warnings tab to see if your form will work OK in that taget version. If there are no warnings you are good to go. If there are warnings it will tell you the min version you need to set the target for:
Static forms tend to be smaller in file size. However if you start to show/hide objects or move objects around or have buttons to add objects, then you will need to save your form as Dynamic:
Good luck,
Niall

Similar Messages

  • Email submit button - email subject doesn't work

    I have a form I created in Livecycle. I have an email submit button.
    The properties of the button let me change the subject of the email. But no matter what I set that to, when the button is click it will only send the form saying "Submitting Completed Form"
    I cannot get it to change to anything else!
    I am using a manual distribution method (also when saving it will let me rename the form, but then just creates a _distributed.pdf file that is the same name as the form).
    Also the email to never changes. I can set it to whatever I like, but when I distribute, it will also go to the person designated when I made the form.
    I'm using ES2 on Win 7 64 bit.

    What type of CC are you using. The only supported ones are Master Card and Visa. If you are using a different one then it will not allow you to use the Submit. I appolgize, I want to be sure of the issue.
    If you are still having problems the next step is a partial erase on the device. Here is a link on how to do that process:
    http://kb.palm.com/wps/portal/kb/common/article/23197_en.html

  • Cannot Change Identities / Email where Submit button emails responses to

    I have created, entiriely, in LiveCycle a form. When it is distributed it AUTOMATICALLY inserts my own email to where the repsonses go to. Cannot - REPEAT CANNOT- Alter it.
    THIS IS NOT THE SUBMIT BUTTON THAT YOU PUT INTO A FORM.
    This is the "Submit" that is automatically generated and put into the PDF TAB when a form is distributed.
    I've gone into Acrobat / LiveCycle and changed "identies" but the response STILL goes to my Email. It NEVER picks up my changed Identity - and shows my own email and not the one I want responses sent to.
    Rebooted after chainging Identities  - STILL goes to my email.
    Edited in the Acrobat - STILL - goes to my email - SUBMIT button (automatically created when you distribute the form) ALWAYS says to send to my email.
    Edit the options/properties to change - MY EMAIL IS GREYED OUT AND CANNOT ALTER IT IN THE DISTIBUTON panel where you can select options as how the form is distrubited - selecting EMAIL response to form submission.
    It ALWAYS SHOWS my Active Directoy LOGON ID as the form OWNER - CANNOT CHANGE IT.
    We are IN an Active Directory environemnt and my logon account has NO RIGHTS to change MASTER registry Win7 entries at all - only (like normal) my own preferences - BUT LIVE CYCLE / ADOBE DOES NOT CHANGE ANYTHING with email at all concerning the auto email sent to portion. I can change "sent by" but NOT who I want responses sent to.
    Cannot FIND at all any XML preferences file in registry / file system to hack and manually change it.
    You look at the XML data in the form and it shows my email address - AND ALL XML data is BLOCKED from being edit at all in the form - and NO idea where it is pulling this information from.
    Is there ANY WAY at all to change --- WITHOUT WRITING ANY CODE - to alter where a distributed form is to send email repsonses to.
    CANNOT, REPEAT CANNOT - use any cloud, online or any external source at all. Cannot use Acrobat.com.
    Thanks,
    Tom

    The email address is coded into the server script file that processes the form data.
    Look for the below file on the server and see if you can open it and locate the email address. It's a Cold Fusion file
    act_email.cfm

  • Submit button email pdf issue

    Good day all,
    I have made a PDF form with Livecycle Designer ES and ran into a problem.
    Found out how to insert a button that sends the form by email, as PDF file attachment, so far so good.
    One problem, my form which consists of several text fields, a drop down list and several radio button groups, is sent but only the first radio button group is filled in the attachment, the rest is simply empty...
    Maybe one of you guys guide me in the right direction, I'm lost.
    best regards,
    Henk van den Berg

    You made me think...... wrapping them in sub-forms...
    I tried to go with the original radio buttons, wrapped the pairs up in individual sub-forms and it works prefect now!
    The manual says nothing about this issue, nevertheless many thanks for pointing me towards a good solution man.
    best regards,
    Henk van den Berg

  • Is it possible to change submit button's URL link based on user input?

    I have a separate html page that does this with a php script, but I had help creating that php file which is just a form that allows users to enter a passcode that I provide them which will then simply link them to an external html page.  Since I don't know about php, I am thinking a possible work around would be to have a text input box which would allow a user to enter (passwordA) then click Submit to load (pageX.hmtl) or they could enter (passwordB) and Submit would load (pageY.html).  
    If anyone knows how I could link my new flash project with my .php file, that would be great, or if there is AS3 code that would do this I would love that!

    I have the php file on my server and the correct path in my as3 now.  Here are the exact codings I'm using:
    AS3:
    stop();
    import flash.events.*;
    import flash.net.URLLoader;
    import flash.net.URLLoaderDataFormat;
    import flash.net.URLRequest;
    submit_btn.addEventListener(MouseEvent.CLICK, btnDown);
    function btnDown(event:MouseEvent):void {
    var variables:URLVariables = new URLVariables();
    var varSend:URLRequest = new URLRequest("http://www.jmusicphoto.com/flashClient.php");
    var varLoader:URLLoader = new URLLoader;
    varSend.method = URLRequestMethod.POST;
    varSend.data = variables;
    passcode_txt.text = "";
    submit_btn.addEventListener(MouseEvent.CLICK, passcodeSend);
    function passcodeSend(event:MouseEvent):void{
    variables.key = passcode_txt;
    varLoader.load(varSend);
    flashClient.php:
    <?php
    if($_REQUEST['key']) {
    $key = $_REQUEST['key'];
    $key = strtolower($key);
    switch($key) {
    case 'home':
    header('Location: http://www.jmusicphoto.com/index.php');
    break;
    default:
    echo "Oh noes!  You got something wrong.  You typed " . $key . " maybe there is a mistake?<br><br>";
    break;
    ?>
    Practically same php code is working here: http://www.jmusicphoto.com/EOSlogin.php   "home" 

  • Email body copy created by email submit button

    The body of a message created by the email submit button contains the following copy:
    "The attached file contains data that was entered into a form. It is not the form itself.
    The recipient of this data file should save it locally with a unique name. Adobe Acrobat Professional 7 or later can process this data by importing it back into the blank form or creating a spreadsheet from several data files. See Help in Adobe Acrobat Professional 7 for more details."
    How do I prevent this, or change the default copy?

    jimmy,
    I've also followed your advice. FYI I'm using LiveCycle Designer 7.1. My only problem is that I can't use HTML markup inside the HTTP Submit Button's URL attribute.
    For example, a
    tag in the HTTP Submit Button's URL attribute appears as just that inside the email body copy:
    . There's no line break.
    The default "Submit by Email" body copy message has a paragraph break as seen below:
    The attached file contains data that was entered into a form. It is not the form itself.
    The recipient of this data file should save it locally with a unique name. Adobe Acrobat Professional 7 or later can process this data by importing it back into the blank form or creating a spreadsheet from several data files. See Help in Adobe Acrobat Professional 7 for more details.
    My question is, how can I add HTML markup in the email body copy? Can this be done with the HTTP Submit button's URL attribute or can the Email Submit Button be customized to change the above email body copy?

  • No XML file attachment when using Submit by Email button

    Hello all -
    I'm using LiveCycle Designer 8.0 to create a simple form, and am using the Submit by Email button to return the user supplied data. When I save the form and test it with Adobe Acrobat Professional 8.1.1, the email goes through just fine, but there is no attachment. No XML file, no nothing. Just a blank email with my signature block at the bottom. Has anybody else experienced this? Any ideas on what could be wrong? All I want is the XML file.

    You have multiple options to sending whole PDF format.
    1) Set the submit button to submit whole PDF format by using a mailto: [email protected] in the submit button action URL.
    2) Set the submit button to fire a javascript that submits whole PDF format. See Adobe's Javascript reference guide for instructions.
    Note: Methods #1 and #2 require Adobe Acrobat or Extended Reader Rights; because, Adobe Reader users are restricted to submitting just the data formats; such as FDF,XML, XFDF, XDP, and HTML. Beware extending reader rights to a PDF form using Adobe Acrobat places end user EULA restrictions, such as not more than 500 end user submissions for each form.
    My Recommendations:
    #3) Set the submit button to point to a URL of a server-side script; such as ASP.net. Then set the format to a data format; such as FDF, XML, XFDF, or XDP; and use ASP.net and iTextSharp (Free) to merge the data with a blank PDF form; and attach the submission to an outbound SMTP mail message and send without 3rd party email software such as MS OUTLOOK.
    #4) A combination of #1 and #3; where you enable usage rights on the PDF using Adobe Acrobat; and send to a server-side script which bypasses client-side email software.
    Check out the following website for online examples that submit to a server side script:
    www.pdfemail.net/examples/

  • Error message when testing Submit by Email button

    I used Adobe LiveCycle for the first time to create a form.  I added both a Submit by email and Print buttons.  When I go to Adobe Professional to test my form to email, I get an security error message that the documet is trying to connect to my email address as the correct domain.  I then have the option to Allow or Block.  When I click Allow nothing happens and I don't get the email in my inbox.
    Please assist as I need to send out this form and want users to be able to send w/out an issue.
    Thanks.

    You have multiple options to sending whole PDF format.
    1) Set the submit button to submit whole PDF format by using a mailto: [email protected] in the submit button action URL.
    2) Set the submit button to fire a javascript that submits whole PDF format. See Adobe's Javascript reference guide for instructions.
    Note: Methods #1 and #2 require Adobe Acrobat or Extended Reader Rights; because, Adobe Reader users are restricted to submitting just the data formats; such as FDF,XML, XFDF, XDP, and HTML. Beware extending reader rights to a PDF form using Adobe Acrobat places end user EULA restrictions, such as not more than 500 end user submissions for each form.
    My Recommendations:
    #3) Set the submit button to point to a URL of a server-side script; such as ASP.net. Then set the format to a data format; such as FDF, XML, XFDF, or XDP; and use ASP.net and iTextSharp (Free) to merge the data with a blank PDF form; and attach the submission to an outbound SMTP mail message and send without 3rd party email software such as MS OUTLOOK.
    #4) A combination of #1 and #3; where you enable usage rights on the PDF using Adobe Acrobat; and send to a server-side script which bypasses client-side email software.
    Check out the following website for online examples that submit to a server side script:
    www.pdfemail.net/examples/

  • Email will not launch on submit button (FireFox/Outlook).

    We have a rather confusing issue with our LiveCycle forms.  We are using FireFox 3.0.11 with Acrobat 1.7 (version 8.x) and Outlook 2003.  All of the systems using this setup can open regular HTML "mailto:" links in our browser configuration.  On my particular machine, I can open the "Submit by Email" link on our documents as expected.  A number of my co-workers cannot.  This solution needs to work for everyone in my group and I really need some insight into what could be the descrepency between my working configuration and their configuration.  Any help is greatly appreciated.  Please let me know if there is any further information I can provide.
    Thank you,
    Alex

    Try submitting to a server-side script, which you have full control over the message and can customize the attachment the way you need such as file name or message body, and send a message response or redirect the user if the message has been sent or not. Using a server-side script bypasses Client Side Email software, so it can work for everyone who opens and submits the form, regardless of whether they have Outlook, Lotus, or a web based e-mail client.
    Sounds like PDFEmail.net would work for your circumstance. PDFEmail.net runs scripts on Microsoft ASP.net web servers, and requires zero programming knowledge and virtually zero server setup. Just upload the scripts and libraries to your Microsoft .net web server virtual directory, and set the PDF submit button action URL to point to the script.
    For more information, please visit: http://www.pdfemail.net/

  • Populate submit button target email with field?

    Hi, this may have already been asked. Is it possible to populate a submit button email target using the contents of another field / text box?
    Say I have emailfield1 and submitbutton1. Is it possible to have submitbutton1 target = emailfield1? I'd like a way of generating a reply to whichever email address is keyed in emailfield1.
    Thanks

    Acrobat can't send its own emails so it has to call an email client.
    Unfortunately this is quite flaky and doesn't always work. It seems to work most well with Outlook but I've found it can depend on the operating system - on my Win7 64bit system it doesn't work. And I could never get it to work with Thunderbird.
    Also, it doesn't work if someone is using web-based email.

  • Submit Button sent to two email address

    I have a form with a submit button that sends the content to
    an email address via "cc". I need the "to" to send to an email
    address that the user provides when filling out the form. How do I
    get the information the user filled out in a field to regenerate
    itself in the "to" line of the submit button email? The code is
    below, with the "?????" representing the text I'm missing to
    represent the email address the user entered in a form field called
    "NomineeEmail" .
    <input type="hidden" name="mreturn" value="
    http://intranet/index/">
    <input type="hidden" name="mfrom"
    value="[email protected]">
    <input type="hidden" name="msubject"
    value="Nomination">
    <input type="hidden" name="mtype" value="html">
    <input type="hidden" name="mto" value="??????">
    <input type="hidden" name="mcc"
    value="[email protected]">
    <input type="hidden" name="mreturnmsg"
    value="<center>Thank you for your
    submission.</center>">

    > What scripting is the form data being submitted to?
    > If a third-party script, what do the instructions for
    that script say?
    if it's formmail or a formmail clone-
    http://scriptarchive.com/faq/formmail.html#q2
    2. Can I have multiple recipients?
    Answer:
    Yes, all you have to do is put multiple e-mail addresses in
    the recipient
    field of your form, separated by commas.
       <input type=hidden name="recipient"
     value="[email protected],[email protected]">
    The email addresses must be in domains listed in the allowed
    recipient
    section.
    Alan
    Adobe Community Expert, dreamweaver
    http://www.adobe.com/communities/experts/

  • HTTP Submit Button vs event.target.submitForm

    Dear All,
    I have a problem that looks like I would need some expert help to resove.
    I have designed a small Form with Acrobat LiveCycle Designer ES 8.2
    The plan is people to fill out the form and submit it to a script on a web page.
    Here is the problem.
    When I insert a regular HTTPSubmit button. Everithing is working just fine. All th fields are submited, and I can process them from there with my script.
    However, when I try to make a regular button and add javascript to the click event.
    event.target.submitForm({cURL: "http://mysite/myscript.php", cSubmitAs:"HTML", cCharSet:"utf-8"});
    The form is submited but non of the fields are.
    As an example output from REQUEST array in PHP.
    With the regular HTTP Submit button I get:
    Array
        [familyname] => 1
        [SubjectNumber] => 2
        [Site] => 3
    While with the above javascript I get:
    Array
        [form1] => Array
                [0] =>
    Looks like with the Javascript I somehow cannot submit the actuall fields.
    Finally, let me tell you the reason why I even want to use Javascript instead of the regular HTTP Submit button.
    My plan is so people can actually change the location where to submit the form.
    From what I read if I use a regluar submit button, the URL must be hardcoded and cannot be changed (selected, by the user dinamically)
    While if I use javascript then I can easily have a text field where people can enter the site where they want to submit the form and use it.
    Thank you very much for your help
    Please let me know if you need any further information
    Regards
    Tsvyatko

    Hey gays, thanks for answering.
    However, looks like I still have problems.
    When I insert a regluar HTTP submit button, it asks for the URL or it will give error.
    Anyhow, if I leave the URL setting blank, and try to execute the code u mentioned, I get a messege, "submit canceled" and nothing is happening,
    And if I enter something in the URL, looks like it still overites the code and submits the form the the hard coeded url.
    In addition, the regular submit button does not even allow me to enter code in the click even, so I did enterend in the mose in even,
    as to execute the code before the button is clicked.
    In addition I also tried to enter the even in a text field exit which I was hoping to use so the user can enter their own url.
    In other words.
    could please be more specific.
    On which even shown I enter the code.
    p.s.
    Finaly,
    in Form Calc
    If I enter this on the mouse enter of the button:
    form1.SCOPA_p2.HTTPSubmitButton1.event__click.#submit.#target = form1.SCOPA_p2.HTTPSubmitButton1_txt.rawValue;
    I get error accessor form1.SCOPA_p2.HTTPSubmitButton1.event__click.#submit.#target is unknown
    Any other thoughts
    Thanks
    Tsvyatko

  • How do I create a submit button for my form? I would like it to send the completed PDF to an email address

    Hi everyone,
    I recently upgraded to Adobe XI and I can't find a "submit by email" button for my form. I created a button and tried to set up some actions but, I can only get the button to direct the user to a URL. How do I make it send the completed PDF to our designated company email address? I'm not too familiar with JAVASCRIPTS so I haven't tried that plus I heard it may not work with users with adobe reader.
    Any help would be appreciated.
    Thanks,
    Matt

    Thanks for the input. I think you might have a different version of LiveCycle than the copy I have since it looks a little different. However, I found the answer in Adobe help. I had to type "mailto:" before the email address to indicate it's an email and not a URL. See below.
    To collect form data as attachments to email, type mailto: followed by the email address. For example, mailto:[email protected]

  • Help with making an Email Submit button on a form!

    Im making a form using livecycle for the first time.
    Im trying to put on it a email submit button - i used email submit field and made the button. Then in the Objects Palette, in the box that says email address i put in the email address that i want it to be sent to. I then tried to email the form, and i received an email, but the attachment was just a bunch of codes, not the form. I want the email to come through with the PDF form.
    I searched on help and this is what i found:
    3.
    In the Control Type area, select Submit. Data will be submitted according to the settings in the Submit tab.
    4.
    Click the Submit tab and type the URL protocol in the Submit to URL box.
    To
    Use this URL protocol
    Example
    Submit the package to an ftp site
    ftp
    ftp://ftp.gnu.org/gnu/GPL
    Submit the package to a web server
    http
    http://myserver/cgi-bin/
    Submit the package to a secure web server
    https
    https://myserver/cgi-bin/
    Submit the package to an email address
    mailto
    mailto:[email protected]
    5.
    Select PDF from the Submit As list.
    I cant find where to change these options - can someone help?
    Thanks!

    Hi,
    The issue is that if the form is not Reader Enabled, then users with Reader cannot submit the form as a PDF.
    They can submit it as an XML file and then you would re-import this back into the form on receipt. It is an extra step, but it does have the advantage that the data being submitted as an XML file is very small.
    If you really need/want the form to be submitted as a PDF AND your users have Reader, then the form will have to be Reader Enabled.
    There are two options:
    Reader Enable using Acrobat Standard (version 9) or Acrobat Professional (version 8). This will give certain rights, like the ability for users with Reader to save the form and for the form to be submitted as a PDF. However there are licensing restrictions, see EULA.
    The other option is to Reader Enable the form using LiveCycle Reader Extensions ES2. This is a server product, which entails additional cost and a cost to Reader Enable each form. It is intended for processing large volumes of forms/large volumes of data.
    There is a summary here:
    http://assure.ly/gYyYc2
    So there are a couple of options.
    Form NOT Reader Enabled:
    Users cannot save the data they input.
    Data must be submitted as an XML file and processed on receipt.
    Form IS Reader Enabled:
    Users can save the data they input.
    Data can be submitted as a PDF (or XML file).
    Hope that helps,
    Niall
    Assure Dynamics

  • I want to have users submit the form in PDF format but it doesn't work using the email submit button

    Hi all,
    I have a form that I want to be returned to a specific email address as a PDF File. This is so that reservations people can open the pdf, and extract the information from it. Keeping it as a PDF will allow them to easily read and use the form.
    When I use the "Add and Email Submit button" approach, as outlined in the "How to" area, everything works fine, except that the format of the submitted file is in xml, not Pdf which is what I need it in.
    I then tried adding a Button to the document from the Library, and set it's "Control Type" to "Submit". This provided me with the submit sub-tab, where I set the "Submit Format" to PDF. In the "Submit to Url", I entered the following - "mailto:[email protected]" (without the quotes)
    The first approach works, but is not in the PDF format that I need (I believe).
    The second approach keeps giving the following error when one selects the submit button - "This operation is not permitted".
    We use Lotus Notes (yes, I know...not my favorite either, and it may be the problem here).
    Any help that might be provided is greatly appreciated!!
    Rob

    Thanks, but, using the "free" version of Reader, there is no opportunity to open nor import the xml data - the menu options do not exist - there is no import listed.
    If we try to open the xml file directly, then we get an error - something to the effect of "unsupported file type, or the file is corrupted".
    I just noticed in my Pro version that there is the command File ->Form Data ->Import Data to Form... command. Is this what you are referring to?
    What do you recommend? Perhaps the easiest thing to do would be to purchase a few copies of Acrobat Pro for the reservations people to use? I was hoping that the free version of reader would do it, but perhaps not?
    Thanks again,
    Rob

Maybe you are looking for

  • How do I transfer data from a hard drive to my new Imac

    Hello, First off, I don't know much about computers, so please forgive me if I sound stupid... Anyways, I had a PowerMac G5 that took a dump. The hard drive is still good and so is the info on it. I want to transfer the pictures, itunes library, and

  • ADD-ON missing in Phase "ADD-ON Selection"

    Hello All, We are in the process of updating our ERP 6.0 system (EHP4 FOR SAP ERP 6.0 / NW7.01) to EHP5. While running maintaince optimizer  got some warnings for 4 add-ons as below. Component C-CEE 110_604 without suitable Product Instance Software

  • Static variable

    Why is that Java does not allow the declaration of a variable in a method, which may be static method or a non-static method to be a static variable? Is there any specific reason for that ....???? The other thing is that if i declare a constructor as

  • JPA persistence and ADF bindings help!!

    Environment: Jdev 10.1.3.1 EJB 3.0 JPA toplink essentials+JSF I'm usind ADF data control to map persistence action to bindings I find an example to map "save" button to "merge" method and all work please anybody knows how to use or where find example

  • Transport of  Charasteristics & Class

    Dear Gurus, I have created Characteristics usting TCode CT04 & Class using TCode AL05.(Navigation path is , SAP menu-Logistics-Central Functions -Document Management System -Classification -Master Data) But I am not able to transport to the same.Can