HTTP Submit and email Submit in same form

Please help.  I have a form that has a "http submit" to a secure payment site (visa, mc, etc) and a "email submit button" within the same form.  The process is that the individual would fill out the form, then make the payment, then submit the filled in form via email.  I am not using one submit button for both, they are separate buttons.
It seems to want to default to the email submit.  Any thoughts?  Is it just not possible both buttons within the same form?
Form created with LiveCycle ES 8.2.

By using the distribute functionality Acrobat.com is overriding the addresses that you have put in with your own. Do not use
Distribute form and it will work fine.
Paul

Similar Messages

  • Latin1 and latin2 in the same form with a unicode system

    We're migrating from 4.6B to 6.0, and from non-unicode to unicode. we need to print latin1 and latin2 in the same form.
    How we can do? We try with unicode-device type: in the preview seem to be good, but then (of course) if printers don't supports unicode special caracthers are bad.
    I read about a cascading fonts...
    Have you had a solution?
    tnx
    Lorenzo

    Yes.. Solved. Now latin1 and latin2 are printed on the same form, without changing any sapscript.
    But now, the layout of the print are slightly moved down, so it's missing a little bit of document, as the printer as mistaked margins. The same printer, on the same form, with another device type print correctly (except, of course, the problem on latin2).
    Tnx in advance for your solution

  • Submit by Email then Save the form

    Is there a way to perform this sequence? If I add app.execMenuItem("SaveAs"); to an event on the Submit by Email button, the SaveAs dialog immediately comes up. I'd like to delay this until after the Email dialog appears and the user sends the form by email. At that point, I'd like to give the user the opportunity of saving the form locally. Perhaps a hidden regular button would do it.

    Try the attached sample if it helps what you are looking for..
    https://acrobat.com/#d=NA*1HUy6we64ja4ewy59ZA
    Thanks
    Srini

  • MouseEvents and KeyEvents in the same form is not working

    Hello!
    I'm newbee in java althought i've bee programing for a long time in other languages, C, C++ wich i'm proud of.
    Now i land on java and there are a lot of cuestions (nothing that cant be solved by trying and reading).
    But today i hitted my head against all posible solutions and nothing (but bad mood) came out.
    The code with trouble is this...
    public class NewJFrame extends javax.swing.JFrame
        public NewJFrame()
            initComponents();
        private void initComponents() {
            jButton1 = new javax.swing.JButton();
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            addKeyListener(new java.awt.event.KeyAdapter() {
                public void keyPressed(java.awt.event.KeyEvent evt) {
                    formKeyPressed(evt);
                public void keyReleased(java.awt.event.KeyEvent evt) {
                    formKeyReleased(evt);
                public void keyTyped(java.awt.event.KeyEvent evt) {
                    formKeyTyped(evt);
            jButton1.setText("jButton1");
            jButton1.addMouseListener(new java.awt.event.MouseAdapter() {
                public void mouseClicked(java.awt.event.MouseEvent evt) {
                    jButton1MouseClicked(evt);
            pack();
        private void formKeyTyped(java.awt.event.KeyEvent evt) {
            Integer i = evt.getKeyCode();
        private void formKeyPressed(java.awt.event.KeyEvent evt) {
            Integer i = evt.getKeyCode();
        private void formKeyReleased(java.awt.event.KeyEvent evt) {
            Integer i = evt.getKeyCode();
        private void jButton1MouseClicked(java.awt.event.MouseEvent evt) {
            Integer i = evt.getButton();
        private javax.swing.JButton jButton1;
    }In debug mode i cant listen to mouse events and key events in the same form. Is that normal ?
    In case this is normal, how can i surround this "problem" and make it work.
    Thanks a lot in ahead.

    Thanks for trying to understand whats going on ...
    There is my SSCCE
    * NewJFrame.java
    * Created on 2 de mayo de 2008, 20:32
    * @author  edu
    public class NewJFrame extends javax.swing.JFrame
        public NewJFrame()
            initComponents();
            setFocusable(true);
            requestFocus();
        private void initComponents() {
            jButton1 = new javax.swing.JButton();
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            addKeyListener(new java.awt.event.KeyAdapter() {
                public void keyPressed(java.awt.event.KeyEvent evt) {
                    formKeyPressed(evt);
                public void keyReleased(java.awt.event.KeyEvent evt) {
                    formKeyReleased(evt);
                public void keyTyped(java.awt.event.KeyEvent evt) {
                    formKeyTyped(evt);
            jButton1.setText("jButton1");
            jButton1.addMouseListener(new java.awt.event.MouseAdapter() {
                public void mouseClicked(java.awt.event.MouseEvent evt) {
                    jButton1MouseClicked(evt);
            javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGap(0, 400, Short.MAX_VALUE)
                .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                    .addGroup(layout.createSequentialGroup()
                        .addGap(0, 0, Short.MAX_VALUE)
                        .addComponent(jButton1)
                        .addGap(0, 0, Short.MAX_VALUE)))
            layout.setVerticalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGap(0, 300, Short.MAX_VALUE)
                .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                    .addGroup(layout.createSequentialGroup()
                        .addGap(0, 0, Short.MAX_VALUE)
                        .addComponent(jButton1)
                        .addGap(0, 0, Short.MAX_VALUE)))
            pack();
        private void formKeyTyped(java.awt.event.KeyEvent evt) {                             
            setTitle(String.valueOf(evt.getKeyCode()));
        private void formKeyPressed(java.awt.event.KeyEvent evt) {                               
            setTitle(String.valueOf(evt.getKeyCode()));
        private void formKeyReleased(java.awt.event.KeyEvent evt) {                                
            setTitle(String.valueOf(evt.getKeyCode()));
        private void jButton1MouseClicked(java.awt.event.MouseEvent evt) {
            setTitle(String.valueOf(evt.getButton()));
        private javax.swing.JButton jButton1;
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new NewJFrame().setVisible(true);
    }It's quite simple, its suposed to show on the windows title the KeyCode (if there is any) or the MouseButton when pressed.
    The problem is: it doesnt work... (if i comment out the jButton1 related code, that means that i dont listen to MouseEvents & dont add the MouseAdapter as MouseListner to the form, the KeyEvents are raised and i can listen to them - but there are no MouseEvents - if i run the SSCCE like above i can listen to the MouseEvents, but cant listen to the KeyEvents. Can you tell me why?
    Just before posting i realized it was a focus issue ! The button got the focus and got all the events redirected towards him ! I solved it with the code
            jButton1.setFocusable(false);and it finally worked !
    Thanks!

  • Calendar Server and Email Server on Same Machine - Email Issue

    Hi.
    I've installed email and calendar on the same host. The email domain for test purposes is the name of the machine. I noticed in the configuration guide, it says that if you put the calendar server and email server on the same machine you need to configure sendmail.cf and modify incoming rules in order to get email reminders from Calendar to Email. I have done this but am still not able to. I get the emails kicked back to root and they say:
    553 5.3.5 System Config Errors
    553 5.3.5 <machine name> config error: mail loops back to me (MX problem?)
    Has someone seen this before?
    Thank You,
    Matt

    Hi Russ,
    We have the same problem as Matt.
    We have properly set up OCS Email it works well both inside and outside our network.
    The only thing that appears not to be working is the email notification capabilities of OCS Calendar.
    We have changed sendmail.cf as stated in the documentantion.
    we are using -
    RedHat Advanced Server 2.1,
    sendmail 8.11.6
    bind 9.1.3
    I would be very gratefull of any information on this, as we're out of ideas...

  • Employee Recognition Form to Submit and Email to Recipient

    I'd like to create a form that can be completed by an employee ("nominee") who would like to recognize another employee for excellence ("recipient").
    This form would be launched from an intranet.
    The nominee would be required to enter the recipient's email address, select from pre-established categories, and then add additional comments.
    Upon completion, I would like the completed form to be emailed to the recipient (suitable for print/like a certificate) and a copy of the nomination details to be sent to another email address or aggregated for review by a third party.
    Can I do this with Adobe FormsCentral?
    Please let me know if and how.
    Thank you

    Hi,
    As per your description mentioned below
    We want every new document that is submitted to be saved under a field that is required to be filled in on the InfoPath form. How do I make that happen?
    First create a column in library and make it required.
    You can add a new field on your InfoPath form while design time.
    you can auto populate this filed with current date time along with Filename string that you would like
     and use this filed as a file Name, so that after submitting the form this value will be filled in your library’s column which you mapped this
     filed using property promotion. Please feel free to ask if you have any questions or need assist.
    Krishana Kumar http://www.mosstechnet-kk.com

  • Submit by email not working as form validation failed.

    Ive created a form with mulitple pages. Three pages require form validation.
    Each page is a unique process so I'm trying to use the "Submit button" to only submit that
    particular page. I've created dummy fields as defaults to cure the validation problem but
    can't seem to get the e-mail button to work. I also created a email dummy button with the
    scripting:
    EmailSubmitButton.execEvent("click");
    I did this to try to force the the form to be sumitted via PDF. I am a novice at this so please
    help. I'd be happy to send the form as well for review

    You may need to enable usage rights in your form. You must have version 8 to do this. Open the form in Acrobat Pro (not Livecycle), click on Advanced tab, then select "enable usage rights in Adobe Reader"

  • How to: have multiple users on reader and pro fill out same form

    I have a marking form that 5 users will use to mark to questions each and fill in.  Having an issue with the reader users that when they same they create a new file and can't save to the one form.  All the pro users can share the form fill in their two questions and then pass on to another user who updates the form the adobe reader user however creates a new file.  Is there anyway around this other then all using pro.
    It is not always the same markers I will have up to fifteen markers.

    Not an easy way. You'd need to create a server that the applets would connect to and then you could potentially have several players. But it involves changing your applet's design and doing a lot of networking and other such stuff, so it's not something you can whip up in a couple of weeks (if you don't have any experience on those things).

  • How do i get my texts to come to my phone and email at the same time

    When a text comes to my phone or I send one out I want them to be sent to my email as well how do I do that

    So there is no way to set it up from my iPhone to where my messages can automatically be sent to my email

  • Email submit button created in LC ES2 causes Acrobat and Reader to crash

    I've created a form in LC ES2, and included an email submit button. When I open this form in Acrobat Reader 10.1.3, click the submit button, and specify "Desktop Email Application," as opposed to the "Internet Email" option, no email is generated, Reader locks up and requires force closing. This happens also with Acrobat X Pro. With both programs, it happens (1) when the form is Reader enabled AND when it's not, (2) when I use an http submit button with a submit to URL of: mailto:[email protected], and (3) when I use a standard button, with control type "submit" and a submit to URL of: mailto:[email protected]
    I AM able to save the form in Acrobat Pro and in Reader (when rights are enabled), I just can't email it.

    Have had the same problem for years. It crashes for me when i just try to email within acrobat. Not sure if its a problem causes by my work network or if it is just another thing never to be fixed by Adobe.

  • Submit by email button ignoring specified email address and subject

    I have recently upgraded to CS5.5 and I am having trouble with the Submit by Email button in my form. 
    When I distribute the form the email address and subject specified on the button are ignored.  Instead, the form is submitted to my email address with the subject of 'Submitting Completed Form'. 
    I have tried creating the form a number of different ways (i.e. converting PDF created in inDesign, just in Acrobat from scratch, just in Livecycle Designer from scratch) with no success and the same result.  I have found I can change the email address if I go to Acrobat X Pro: Edit > Preferences > Identity but this is not an adequate work-around and does not fix the issue of the subject.
    My company develops forms for both internal and external clients that require this functionality.  The email subject is used to help identify which form it is and routes it to the appropriate department. 
    I have searched the web and this forum for answers but have not found an answer. 
    My question is:  How do I get the 'Submit by Email' button to work correctly?
    I have created many forms before using CS3 and have never encountered this problem.  At the moment the only way I can see to fix the problem is to go back to CS3 which seems ridiculous.  I thought later versions of software were supposed to work better not look the same and not work (sorry for the rant, frustration is getting the better of me).
    I need to use the Distribute Form as it states in the LiveCycle help:
    If you do not use the Distribute feature, form recipients who use Adobe Reader cannot save modifications to most PDF files, including forms filled with data.  They must either immediately return their data electronically or print the form and return the paper copy.
    I am using Acrobat 10 Pro and Livecycle Designer on Windows 7 64-Bit
    Any help will be greatly appreciated.

    What you are seeing is the intended behavior and I'm not sure why is has changed.
    When you distribute a form, it substitutes the email address you originally set up with the button with the one specified in your identity preference and the subject is set to "Submitting Completed Form". It makes a number of other changes to the document that make the distribution workflow possible. I do know that different code is used if the form is being used in a version of Acrobat/Reader prior to 9.
    With an acroform (not XFA), you can save a copy of the distributed form, allowing you to edit the scripts that among other things set the subject line of the email, so that a different subject line text is used. You can then re-enable the form and it should work OK. The problem is knowing exactly what needs to be changed and finding it, and I'm not certain that this is possible with an XFA form. I normally work with acroforms and know where to do it in Acrobat, but things are different in LiveCycle Designer.

  • 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

  • Acrobat extended pro - Submit by Email form issue

    I have downloaded a trial version of Acrobat Extended Pro that I am reviewing to purchase for work.  I am trialling the creation of a form that I want users to submit via email. - I want the completed PDF to be submitted in the email, which the help information states can be done.  I have placed the Submit by Email button on the form, but I don't have the option of selecting the 'Submit' tab to be able state that I want the completed PDF to go in the email. Is it because I'm using a trial version or is there something else I am doing incorrectly?
    Any help would be greatly appreciated.
    Thanks

    George,
    Thanks But when I go to the Reader Extended PDF option under Save As the Three options that appear are grayed out?  Any Idea how to fix that?

  • Submit by Email AS a PDF (urgent - time crunch)

    I'm creating a form to be distributed externally to clients via email.  I'd like them to be able to fill in the form, then click Submit by Email and have a completed PDF sent back to me (which we save in clients files for our records in an attempt at paperlessness).  I've got the Submit by Email button in my form now, but apparently the default submission format is XML not PDF.  Is there a way to change this?
    Thanks - Sat

    Paul,
    Appreciating your explanations.
    I never knew that we could submit our form in these many ways.
    Your examples are informative and very useful to me.
    I have another question: Can we close the pdf after submitting the form to an email address??
    I mean, a user fills-in a User Acceptance Form and clicking on submit button. This should trigger an email (internally) and the form should close.
    Is it possible?
    Thanks,
    Nith

  • Submit by email button

    I have created a really awesome form using Adobe LiveCycle. I inserted a "Submit by Email" button in the form which attaches the form (as pdf) to the email and populates my email address in the "To:" Field with Outlook.  I tested this thing out a million times and it works perfectly. So i went ahead and sent it out to my distribution list. So far no one has been able to send the attachment. They have all been resulting in faxing it to me.  Nothing happens when they click on this button. I was think that this may have something to do with them only having Reader? and not the full version of Adobe? It did work for one other person in my office, but they have the full verison. Any help is appreciated! Thanks

    Did you enable the reader extensions?  From what you are saying, it
    doesn't sound like you have and so those with Reader are having the issues
    You may need to take your form into Acrobat and "enable Reader Extensions"
    - the way you do this depends slightly on the version of Acrobat you are
    running but you should be able to find it in the help system.  If not,
    write back

Maybe you are looking for

  • Dunning Letters in Different Language

    Hi All, Need help from your side. I have requirement that I need dunning letters in different language's. If we customer is from Germany the letter should be prininted in Geman language, If the customer is from Spain then it should have Spanish langu

  • Dates in column headers based on passed-in parameters

    I am trying to display a query that views performance data for a specified time range, with one day per column and the day's notation ('MON-DD') in the column header. Instead of giving myself a nightmarish query with a variable number of columns, I a

  • Set timeout for dynamic web service call in wls

    Hi, I have a dynamic client using Call interface to invoke 3rd party web service. How can I set the timeout for the call? I know there is a property to set for static client. Thanks

  • PRICING Procedure in SAP for an Incomming Sales Order IDOC

    Hi Friends, Here is a situation what we have and what we intend to do. We would be getting a Sales Order IDOC and when it hits the SAP..it comes with -Material, Qty and Price per material -Total Freight -Total Tax i.e the Pricing conditions are not m

  • Windows 2008 R2 server Scheduled Task not working

    I have a batch file that writes to a file, when I click it manually it works. However when I have it set in a scheduled task it will create the file but it will not write to the file. How can I fix this?