I am new to Acrobat, so please bear with me. I have Acobat 9 Pro Extended and Live Cycle Designer 8.2. I have designed a simple order form that needs to be filled out from our web site and emailed back to our office. I have the form designed and form fields are working well. I have both a "Print Button" and "Email Submit Button" on the form. The Print Button works fine but the Email Button I am having a problem with. The email address the form is returned to could be opened on a system with or without Pro installed on it. The people filling the form usually only have Reader on their system. For these and other reasons I would like the entire pdf returned, not just the xml data. I'm not sure what I'm doing wrong. Any help would be appreciated. Thanks in advance.
"Please try this two button method:
1) "Click Here" Button (visible)
2) "Email" Button (invisible)
1) At Click Event for the "Click Here" button:
Email.event__click.submit.target = "mailto:"+"Your HR Dept address"+"?subject=" Your subject ";
Email.execEvent("click");
xfa.host.messageBox("THANKS FOR COMPLETING THESE STEPS AND SENDING CONFIRMATION."
"", 3, 0);
2) "Email" Button: it will be a real submit button and will submit pdf or xml file
Hope it works for you. And, Thomp is correct that there are so many ways to do this.