Adobe LiveCycle Designer ES2 email button issue...  :(

I have created a form with an submit button with is supposed to go to an email address. I have used this EXACT process in a prior form and had no issues. I am using a regular button and then have a script in MouseUp*. The following script will not open email to send it. I copied it directly form a previous form that did what wwe wanted it to do.
Script:
if (form1.execValidate() == true){
    if (employeename.rawValue != null || employeename.rawValue != "") {
    vSubject = "Emerging Technology Evaluation Request  " + employeename.rawValue;
        vBody = "The form has been sent by " + employeename.rawValue;
       if (Date.rawValue != null || Date.rawValue != "") {
        vBody = vBody + " on " + Date.rawValue;
    var oDoc = event.target;
    oDoc.mailDoc({
        bUI: true,
        cTo: [email protected],
        cSubject: "Emerging Technology Evaluation Request " + employeename.rawValue + " " ,
        cMsg: "Attached please find Emerging Technology Evaluation Request form."
Any help would relieve this big headache. Thank you
Teresa

Hi,
You can do the following:
You have to use a normal button!!
Please copy the following code in the click-event of the normal button!
You have only adapt if the name of your DropDwonList is not the same ( in line 1 and line 4)!!
If the user don't use the DD the buttons don't works. The button works if the user select any emal of the DD.
if(DropdownListe1.rawValue != null)
    //fill in e-mail
    var Mailto = DropdownListe1.rawValue;
    //var Mailto = "[email protected]";
    //fill in subject
    //var YourSubject = Formular1.s1.subject.rawValue;
    var YourSubject = "Test Subject";
    //fill in message
    //var YourMessage = "Content PDF:\r" + "Field content: " + Formular1.s1.inhalt.rawValue + "\rName: "
    var YourMessage = "This is a test message.\r2.row start here.\r3.row here.";
    //fill in e-mail cc
    //var CC = Formular1.s1.emailcc.rawValue;
    var CC = "[email protected]";
    //fill in e-mail bcc
    //var BCC = Formular1.s1.emailbcc.rawValue;
    var BCC = "[email protected]";
    var Mail = "mailto:" + Mailto + "?Subject=" + YourSubject + "&Body=" + YourMessage + "&cc=" + CC + "&bcc=" + BCC;
    //cSubmitAs: "PDF" send the pdf as attachment
    //cSubmitAs: "XML" send the pdf as xml-attachment
    event.target.submitForm({
    cURL: Mail,
    bEmpty: true,
    cSubmitAs: "XML"
Hope it will helps you,
Mandy

Similar Messages

  • Adobe LiveCycle Designer ES2 email button question

    I am using Adobe Lifecycle Designer ES2 to create an Adobe Acrobat X pdf form. The form uses a checkbox to select different options, and then the form is sent via e-mail to a specific e-mail address. I am wondering if it is possible to script the following option when sending the e-mail:
    I have a dropdown list box where a person's name is selected e.g. John Smith.    Depending upon which person is selected, is it possible to include their name in the cc field of the e-mail message, so that John Smith is appended to @abc.com  for an e-mail address of [email protected]
    Any help would be greatly appreciated.
    Thank you.

    Hi,
    You can do the following:
    You have to use a normal button!!
    Please copy the following code in the click-event of the normal button!
    You have only adapt if the name of your DropDwonList is not the same ( in line 1 and line 4)!!
    If the user don't use the DD the buttons don't works. The button works if the user select any emal of the DD.
    if(DropdownListe1.rawValue != null)
        //fill in e-mail
        var Mailto = DropdownListe1.rawValue;
        //var Mailto = "[email protected]";
        //fill in subject
        //var YourSubject = Formular1.s1.subject.rawValue;
        var YourSubject = "Test Subject";
        //fill in message
        //var YourMessage = "Content PDF:\r" + "Field content: " + Formular1.s1.inhalt.rawValue + "\rName: "
        var YourMessage = "This is a test message.\r2.row start here.\r3.row here.";
        //fill in e-mail cc
        //var CC = Formular1.s1.emailcc.rawValue;
        var CC = "[email protected]";
        //fill in e-mail bcc
        //var BCC = Formular1.s1.emailbcc.rawValue;
        var BCC = "[email protected]";
        var Mail = "mailto:" + Mailto + "?Subject=" + YourSubject + "&Body=" + YourMessage + "&cc=" + CC + "&bcc=" + BCC;
        //cSubmitAs: "PDF" send the pdf as attachment
        //cSubmitAs: "XML" send the pdf as xml-attachment
        event.target.submitForm({
        cURL: Mail,
        bEmpty: true,
        cSubmitAs: "XML"
    Hope it will helps you,
    Mandy

  • ADOBE LiveCycle Designer 8 - EMAIL SUBMIT BUTTON DOES NOT WORK

    I created a new form in Adobe LiveCycle Designer 8, but the email submit button, nor a regular button assigned with a 'submit' function will do anything. It should initiate a new Outlook email but it does not. My default programs are set correctly (default email program and the default "mailto" program are set to Outlook). This document was created not only with ALC8, but on a Windows Vista PC with MS Office 2007. I ran a test to see if it would work on a WinXP SP2 machine with Office 2003 and it still did not work.
    Can anyone help?

    Alan
    Though not an expert, I've created a few forms with the Submit by Email button. If you've already done this then sorry for asking, but did you go through the Acrobat Distribution (Forms>Distribute Forms)process after creating the form in LC8? As far as I can tell the email submit button doesn't work without this stage.
    This confirms the email submission address, then sets up a dataset to be saved in a location of your choice.
    filename_dataset_0001.pdf
    then a file type that can be edited, saved and submitted by Reader users:
    filename_pub_0001.pdf
    You can save this to your intranet server or email direct to the recipient.
    When the submit button is then used you receive a copy of the whole form which on opening will prompt you to add it to the dataset. Receiving and adding multiple forms to the data set is straightforward. You will see them all listed in the viewer above the form itself. From here you can also then select and export the data to Excel via xml or as a csv file.
    Note that any changes you make to the form should be to the original document and the distribution process repeated, otherwise the functionality of the form will be affected.
    That's about the limit of my knowledge I'm afraid, therefore if you have already tried this and are still having problems then hopefully someone else can help out.
    Regards

  • Adobe livecycle designer es2

    hi,
    i have a pdf form made by adobe livecycle designer. here there r 2 fields. say one field A and anothe is B . i want to populate info in field b which will depend on value of A. IF i put 4 in A then B will 17., if A 5 B 21 .... etc. can u pls help to make such tye of code? 
    thanks
    Ali

    Write the code in exit of field A
    if(A.rawValue == "4")
    B.rawValue = "17";
    else if(A.rawValue == "5")
    B.rawValue = "21";

  • Adobe LiveCycle Designer 7 Radio Button Help

    HELP!!!
    I have a list of radio buttons which all denote a different value.
    How do I attach this value to each button, and then make the value of that button appear in a numeric field beside it and how can I de-select the button and its value?

    Radio buttons come in groups. In LiveCycle Designer, when you select a single button, you're selecting the entire group as far as the button values are concerned. Look on the Object window. You'll find a listing there of the radio button group values, and you can edit them.
    To get a value from a radio button just use the fields name.
    In JavaScript use this code for a Radio button group named MyRadio
    MyRadio.rawValue;
    You can find out more by watching this video:
    https://admin.adobe.acrobat.com/_a200985228/p87746471/
    Thom Parker
    WindJack Solutions
    www.windjack.com
    pdfscripting.com
    The Acrobat JavaScript Reference, Use it Early and Often
    http://www.adobe.com/devnet/acrobat/

  • Adobe LiveCycle Designer Form Emailing Help

    I have a survey that has some drop down that users can rate on the form. I was able to get it to work where the user can click on "Submit to Email" button and sends it out as an attachment. All textboxes shown what the user has type in, but the drop down has no value. How can I configure the drop down so that it is in the form?

    check the 'object' tab of the field:
    In the binding tab there is an option: 'default binding' - if it set to "None" change it to "Normal"

  • FAQ About Adobe LiveCycle Designer ES2

    HI my name is saeed and i want ask about when i make application form on this program i want put button (send email) as PDF not XML or html i meaning he send me email after full the application as Attach fail  PDF  not xml or html is this possible.
    have god day
    saeed

    This is a Forum on the working of
    the Froums, yea I know that is confusing.
    Anyways you want to be in the LiveCycle Forum http://forums.adobe.com/community/livecycle or click the black Froums box above and navigate to forum you want.

  • FAQ About Adobe LiveCycle Designer (send email) as PDF

    HI my name is  saeed and i want ask about when i make application form on this program i  want put button (send email) as PDF not XML or html i meaning he send  me email after full the application as Attach fail  PDF  not xml or html  is this possible.
    have god day
    saeed

    Goto command prompt and type  ipconfig
    You will get something like this:
    Use the IP Address instead of the word hostname.
    In my case, it would be http://10.13.34.155:8080/ReaderExtensions
    The you will get something like this:

  • If I use adobe reader 7.0 to open LiveCycle Designer ES2, what will happen?

    Hi,
    I am planning to recommend adobe LiveCycle Designer ES2 as a forms designer software to a corporate client. But it seems that the client is still using the old version of adobe reader 7.0.
    So I need to know that is it essential to use adobe reader 9.0 for designer ES2, and if by adobe reader 7.0, what problem would be happen?
    It is very helpful If there is some detailed information about it.
    Thanks
    En Shoku

    Hi,
    When you design a form in LC Designer ES2 you can set the target version of Acrobat/Reader in the File > Form Properties > Defaults tab.
    While you can target v7, you need to be aware that some of the functionality in LC Designer ES2 is not supported in Reader v7. For example in LC Designer you can set the presence of an object to 'visible (screen only)', but this is not supported in Reader v7, so would cause a problem. So for each form you would need to set the target version and then check the Warnings palette to see if there are any problems.
    Check out the post by John Brinkman discussing Acrobat X, as this has a very handy table for the LC Designer/XFA Specification and Acrobat/Reader versions: Acrobat X and XFA 3.3
    XFA Version
    Acrobat/Reader
    2.1
    6.02
    2.2
    7.0
    2.3
    7.0.1, 7.02
    2.4
    7.0.5, 7.0.7
    2.5
    8.0
    2.6
    8.1, 8.1.1
    2.8
    9.0
    3.0
    9.1, 9.2, 9.3
    3.3
    10.0
    You can see there are alot of changes around v7 and that if the user has Reader v7.0.7, then you can utilise the features in XFA Specification 2.4.
    The other issue to be aware of is that users with Reader will NOT be able to save data in the form UNLESS the form has been Reader Enabled before the form is deployed.
    The form can be Reader Enabled in two ways:
    Using Acrobat Standard v9 or Acrobat Professional v7 or v8. Has licence restrictions, see EULA.
    Using a server produce called Adobe LiveCycle Reader Extensions ES2. Additional costs.
    Here is a summary of the options available to users with Reader, depending on whether the form is Reader Enabled AND how it was enabled:
    There is a post here and a PDF summary:
    http://assurehsc.ie/blog/index.php/2010/05/using-livecycle-forms-in-acrobat-and-reader/
    Hope that helps,
    Niall

  • Adobe LiveCycle Designer ES Error while Connecting to MYSQL ODBC Driver

    Hi
    I'm getting an strange error message when i try to connect a LC PDF form to
    MYSQL DB using MySQL Connector /ODBC 3.51 Driver
    Here is the complete detail how i was trying to build a connection
    string :-
    I Opened a form in Adobe LiveCycle Designer ES2 Ver.9.0.0
    Clicked on Data View Pallete --> New Data Connection --> selected OLEDB Database radio button --> Build a Connection string (clicked on build button) --> selected MS OLE DB Provider for ODBC Drivers (the default selected option ) --> clicked on Next >> button --> Use connection string (radio button) --> Build connection string on clicking Build button --> Select Data Source windows opens --> Clicked on Machine Data Source tab --> created a new data source (with User Data Source) --> Selected the MySQL ODBC Driver (MySQL ODBC 3.51 Driver) --> Clicked on next button and then Finish
    A Connector/ ODBC 3.51.28 - Add Data Source Name window opens up which have the DSN connection details (DSN Name , Server , user , password , database).
    I put all the default details
    After this i got a error message saying that
    Adobe LiveCycle Designer ES has encountered a problem and needs to
    close. we are sorry for the inconvenience
    I tried this number of time and was getting this error message every
    time i try to put the DSN Detail and trying to connect to the DB. This
    was really irritating.
    Can somebody's what's the Issue . Is this a Resource Conflict or
    something else
    P.S :- I am using Adobe LiveCycle Designer ES2 Ver.9.0.0 with Windows XP and MySQL
    Connector /ODBC 3.51 and the DB Connection is working good for MS
    Access( though i don't need MySQL Connector fot this ).
    Any Help would be highly appreciated
    Thanks Alok

    Hi
    I'm getting an strange error message when i try to connect a LC PDF form to
    MYSQL DB using MySQL Connector /ODBC 3.51 Driver
    Here is the complete detail how i was trying to build a connection
    string :-
    I Opened a form in Adobe LiveCycle Designer ES2 Ver.9.0.0
    Clicked on Data View Pallete --> New Data Connection --> selected OLEDB Database radio button --> Build a Connection string (clicked on build button) --> selected MS OLE DB Provider for ODBC Drivers (the default selected option ) --> clicked on Next >> button --> Use connection string (radio button) --> Build connection string on clicking Build button --> Select Data Source windows opens --> Clicked on Machine Data Source tab --> created a new data source (with User Data Source) --> Selected the MySQL ODBC Driver (MySQL ODBC 3.51 Driver) --> Clicked on next button and then Finish
    A Connector/ ODBC 3.51.28 - Add Data Source Name window opens up which have the DSN connection details (DSN Name , Server , user , password , database).
    I put all the default details
    After this i got a error message saying that
    Adobe LiveCycle Designer ES has encountered a problem and needs to
    close. we are sorry for the inconvenience
    I tried this number of time and was getting this error message every
    time i try to put the DSN Detail and trying to connect to the DB. This
    was really irritating.
    Can somebody's what's the Issue . Is this a Resource Conflict or
    something else
    P.S :- I am using Adobe LiveCycle Designer ES2 Ver.9.0.0 with Windows XP and MySQL
    Connector /ODBC 3.51 and the DB Connection is working good for MS
    Access( though i don't need MySQL Connector fot this ).
    Any Help would be highly appreciated
    Thanks Alok

  • Adobe LiveCycle Designer 10.0 insert QR-Codes

    Hello Adobe Community,
    I contacted an Adobe supporter via live chat two days ago. He said that the Designer 10.0 supports QR-Codes on PDF.
    But before buying the expensive software, I want to make sure that it really supports creating QR-Codes (Data Matrix Codes).
    I want to create these code fields as variable form fields and fill in data via a C# application and print it afterwards.
    Is this possible with the Designer 10.0?
    best regards,
    David

    Adobe Acrobat X Pro build 10.0.1
    Adobe Livecycle Designer ES2 build 9.0.0.2.20101008.1.734229
    I also have this issue.
    thanks
    WoWRonin

  • Hi Is there any Certification Course on Adobe LiveCycle Workbench ES2

    Can Any one let me know if there is any certification on Livecycle ES2?
    What is the name of certificationo and duration require to study???

    Adobe Acrobat X Pro build 10.0.1
    Adobe Livecycle Designer ES2 build 9.0.0.2.20101008.1.734229
    I also have this issue.
    thanks
    WoWRonin

  • Adobe LiveCycle Designer

    Hi guys, i having problem preview my form in Designer.
    Im using version 8.0. Should i upgrade to latest version and what is the latest version?
    From internet, it show up Adobe LiveCycle Designer ES2. I'm not sure is the one?

    Hi Nyap,
    Try the following setting in the lifecycle designer.
    Goto
    Edit --> Form Properties --> Defaults --> Preview, set 'XDP Preview format' to Acrobat Dynamic.
    Save and try again.
    Thanks & Regards,
    Sanoosh

  • Trouble connecting to https secure web service using Adobe Livecycle Designer

    I am attempting to use Adobe Livecycle Designer ES2 to create a data connection in a Form to a secure (https) web service and I'm having some difficulty.
    I'm new to Livecycle and have tried searching online for an answer, but the help isn't very clear and the only tutorials online that I can find are ones that connect to non-https services.
    The WSDL I'm trying to connect to is: https://uk.ws.ondemand.qas.com/ProOnDemand/V3/ProOnDemandService.asmx?WSDL
    My questions are:
    Q1. Does Adobe Livecycle support https web service connections? The following link suggests that this isn't possible: http://books.google.co.uk/books?id=yOOcM3Bn4BAC&pg=PA179&lpg=PA179&dq=secure+web+service+w ith+adobe+livecycle&source=bl&ots=jm1GIZflOJ&sig=uLfv5Xda4eXXJl5o_7vBViwU-w0&hl=en&sa=X&ei =WLvIT5P4OujW0QWmv7nDAQ&ved=0CI4BEOgBMAk#v=onepage&q=secure%20web%20service%20with%20adobe %20livecycle&f=false
    Q2. I've managed to consume the WSDL but can only see the body of the XML request for a particular SOAP action. Where can I add the username/password credentials? I've selected "Requires Message-Level Authentication" during the new connection wizard, but it doesn't prompt me at all for these details.

    Hi,
    I tried using SOAP.Connect too..
    But I am facing the same problem.
    Any solution found yet?
    Rgerads, Amith

  • Hi - I created a form in Adobe Livecycle and have a button on it to send the form via email.  t worked, but only for those with PC.  I could not get it to work with Apple Yosemite even with reader installed .  is there a way i can make it work for apple /

    Hi - I created a form in Adobe Livecycle and have a button on it to send the form via email. It worked, but only for those with PC. However,  I could not get it to work with Apple loaded with Yosemite even with reader installed .  Is there a way i can make it work for apple / Mac? It worked fine on a mac using Mountain Lion and reader
    Thanks

    LiveCycle = XFA forms.
    afaik - These cannot be used in Apple OSs.
    Be well...

Maybe you are looking for

  • Blackberry Desktop on Dell Venue Pro 8 Tablet Questions

    I have read that it is possible to use Blackberry Desktop with Windows 8 & 8.1.  And I have read that Blackberry Desktop works with any version of Outlook other than 2013.   I have been told by Microsoft that I can install any version of Outlook olde

  • 2 Questions That I Need Help With...

    I'm in the process of reimporting some 3000 plus cds onto a new hard drive, after my last HD crashed. The files were retrieved for the most part, but I want to upgrade them to a higher bit rate on a different HD. Am doing it on same lappy that I bega

  • Grouping Table Columns

    Hi All, In my webdynpro application we need to "Group Table Column".  I am using NWDS 2.0.9. The "Insert Group COlumn" feature is not there in NWDS 2.0.9. If so how ca i group my table columns. Can anyone provide me a solution for this. Regards, Divy

  • Indesign keeps crashing when opening documents

    i recently intalled indesign cs5.5. it won't open documents created on other computers. the program crashes before the document ever shows on my screen. have called adobe tech twice but the problem remains unsolved. i'm running mac lion. have checked

  • ProductPreviewSize and ProductThumbSize in Config Settings : Commerce

    Hi, Can someone advise exactly what the above settings affect in WT? I have tried changing them but have not spotted any difference to my images. The UI refers to 'AutoGenerated' preview images is this comment still relevant and if so what are autoge