How do you remove or change auto generated text in returned form e-mails?

Hello,
I am currently using Adobe Acrobat 8 Professional (Version 8.1.3) to create a form that will be sent to a group of people.  When testing it, I've noticed that when the end user presses the "SUBMIT FORM" button and a new e-mail opens with the completed form attached, the following text is automatically added to the body of the e-mail:
Form Returned: XXXXXXX.pdf
Instructions to add this form to a data set:
1. Double-click the attachment.
2. Acrobat will prompt you to select a data set.
What I need to know is whether or not there is a way to either prevent this auto generated text from appearing or revise it so it gives a custom message instead.
Any insight would be greatly appreciated!
Regards,
Jeff

It sounds like you are getting a basic message that is telling you submitting the PDF is unnecessary and asking if you want to submit the data instead. I have not seen this one before, but that is my guess. If you are using the form fields created in Acrobat (not Designer), then just select FDF or XML for the data type to be submitted, not the form.

Similar Messages

  • How do you remove or change red border in Livecycle required

    How do you remove or change red border in Livecycle required field?
    When I make a field required, it makes the pdf show a thick ugly red border. How can I change that?

    Now you see me, now you don’t.
    Interactive forms highlight where you should enter data. To turn this highlighting on, click the Highlight Existing Fields button.
    The fillable fields within the form (see example below) are highlighted in a light blue color. This lets you enter information into these fields. By default, Adobe® Reader® displays a red border around required fields:
    Pretty dang ugly, huh?
    Fortunately, it can be turned off.  This script (placed on a form:ready event) will do the trick:
        if (xfa.host.name == "Acrobat")
    app.runtimeHighlight = false;
    Here’s how we achieve this:
    Part 1:
    In the Object palette, click the Value tab. Under Type, choose User Entered – Required.
    First, we need to define which fields are mandantory/required. Click within the desired field to select it.
    You can assign as many mandatory fields as the form requires. When you are finished doing this, enter the Script Editor.
              Note:   To show or hide the Script Editor window as you need it, click the toggle.
    Select the form:ready event. Be sure JavaScript is the chosen scripting language to run on the Client.
    Type the following script into the window:
        if (xfa.host.name == "Acrobat")
           app.runtimeHighlight = false;
    Save your work.
    Part 2:
    From the File menu, choose Form Properties.
    Click the Form Validation tab.
                   Click Color Failed Fields.
                   Check the box next to Color fields and fail their validations.
    To turn borders off, click the arrow next to Border Color, then click the box.
    To define a background color, click the arrow next to Background Color, the choose More Colors.
    Select the first available empty box, then click Define Custom Colors.
    Define a custom color per your visual identity guidelines.
    When you are finished, click on Add to Custom Colors, then click OK.
    Click OK on the Form Properties window.
    Save your work.
    The result? When the user tries to submit a form without first entering data into the required fields, an alert message is displayed.
    When the user clicks OK to clear the error message, form submission is cancelled.
    Failed fields are highlighted in an attractive way—without red borders.

  • Need to change auto generated text from pdf report

    I have implemented pdf but it generated text from the autogenrated xml.
    If I need to change that text then what should I want to do for that?
    Following is my xsl file and the generated output in pdf.
    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:fo="http://www.w3.org/1999/XSL/Format"
    xmlns:fn="http://www.w3.org/2005/xpath-functions">
    <xsl:output method="xml" indent="yes" encoding="utf-8" omit-xml-declaration = "yes" />
    <xsl:template match="/">
    <fo:root>
    <fo:layout-master-set>
    <fo:simple-page-master master-name="my-page">
    <fo:region-body margin="1in"/>
    <fo:region-before extent="1in" background-color="silver" />
    </fo:simple-page-master>
    </fo:layout-master-set>
    <fo:page-sequence master-reference="my-page">
         <fo:static-content flow-name="xsl-region-before">
    <fo:block height="150px" width="1024px" background-color="blue" >
    <fo:external-graphic width="340px" src="http://localhost:9000/web-determinations9000/images/logo.png"/>
    </fo:block>
    </fo:static-content>
    <fo:flow flow-name="xsl-region-body">
    <fo:block >
    <xsl:apply-templates mode="dump" select="/session/entity/instance/attribute"/>
    </fo:block>
    </fo:flow>
    </fo:page-sequence>
    </fo:root>
    </xsl:template>
    output from pdf -
    What is Student Id?=
    65.0
    Is scored more than 80% true%=
    true
    What is Student Name?=
    asf
    What is lastname?=
    asdf
    Is student eligible for gold medal?=
    true
    If i want "what is student id?" text to only student Id then what change I need for that?

    Hi,
    Following is the code sample for your understanding:
    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:fo="http://www.w3.org/1999/XSL/Format"
    xmlns:fn="http://www.w3.org/2005/xpath-functions">
    <xsl:output method="xml" indent="yes" encoding="utf-8" omit-xml-declaration = "yes" />
    <xsl:template match="/">
    <fo:root>
    <fo:layout-master-set>
         <fo:simple-page-master master-name="my-page">
              <fo:region-body margin="1in"/>
              <fo:region-before extent="1in" background-color="silver" />
         </fo:simple-page-master>
    </fo:layout-master-set>
    <fo:page-sequence master-reference="my-page">
         <fo:static-content flow-name="xsl-region-before">
              <fo:block height="150px" width="1024px" background-color="blue" >
              <fo:external-graphic width="340px" src="http://localhost:9000/web-determinations9000/images/logo.png"/>
              </fo:block>
         </fo:static-content>
         <fo:flow flow-name="xsl-region-body">
              <fo:block>
              <xsl:apply-templates mode="dump" select="/session/entity[@name='global']/instance[@label='global']"/>
              </fo:block>
         </fo:flow>
    </fo:page-sequence>
    </fo:root>
    </xsl:template>
    <xsl:template match="/session/entity[@name='global']/instance[@label='global']" mode="dump" priority="100">
         <fo:block margin-top=".5cm" margin-left=".1cm" border-start-style="solid">
              Student ID:<xsl:value-of select="attribute[@id='var_student_id']/number-val"/>
         </fo:block>
    </xsl:template>
    </xsl:stylesheet>Thanks,
    Aakarsh

  • HT2736 How do you remove any remaining gift certificate credit from your itunes account as one is prompted to do this if you want to change your country or region?

    How do you remove any remaining gift certificate credit from your itunes account as one is prompted to do this if you want to change your country or region?

    Please supply answers that do not refer me to contacting support.

  • How do you remove credit card # from iTunes account

    How do you remove credit card # from iTunes account without entering a new one because added money to account from gift card?

    On your computer's iTunes you should be able to edit your payment info by going into the Store > View Account menu option and logging into your account, and on your account's details page there should be a payment link.  If you are doing it on your iPhone then try tapping on your id in Settings > iTunes & App Store and select 'View Apple ID' on the popup - that should also give you a payments link on your account's page.
    Changing payment info : http://support.apple.com/kb/HT1918

  • How do you remove a credit card from your account?

    how do you remove a credit card from your account?

    Hello sammi094,
    The following article provides step-by-step instructions for changing your billing information.
    iTunes Store: Changing your payment information
    http://support.apple.com/kb/HT1918
    See what to do if None isn't showing or you can't select it.
    Cheers,
    Allen

  • How do you remove credit cards off your account

    how do you remove credit cards off your account.  I was told that I had too many credit cards on my account

    In iTunes, delete your current credit card and click on Done.
    Close iTunes.
    Go to store.apple.com.  Click on Account, then Account Home Page.
    Under Account Settings, click on "Change your default shipping or billing Info".
    Sign back in to your account if necessary.
    Edit the credit card on file.
    Open iTunes.
    The new credit card should be on file in iTunes.

  • How do you remove recipients from the To list?

    Say you want to send an email to multiple recipients. You add a few recipients to the To list but then change your mind about including one of them. How do you remove one from the list? So far the only way I can see is go cancel the whole message and start again.

    Touch the persons name you wish to remove. It will highlight in blue. Then hit the destructive backspace (delete) key on the keyboard.

  • How can you remove your e-mail on your profile? (Apple Support)

    How can you remove your e-mail on your profile? (Apple Support)

    I don't think you can remove your email.  If you are concerned about privacy make sure you have it set so that you are the only one who can view it. You do this under the privacy settings under Your Stuff - Profile  " If you want to change your email you can go here to make changes.
    laverne's mom

  • How do you remove a badge number from the app store without downloading...

    HOw do you remove the badge number icon for a program that you do not want to update from the app store.
    I have an app that is updated but i don't want the update (new ugly artwork and I am content with what the present artwork and app does)...I don't want the update. How do I remove/refuse the update and remove the number badge?
    Thanks!

    so you have an app on your phone that you do not want to update?
    But you want to get rid of that annoying badge from the appstore?
    There is a fix for this!
    Created by Elit3!
    if you post this anywhere else please acknowledge my find! thank you.
    new directions:
    1. go to itunes
    2. click applications
    3. right click on the application you want to use
    4. press show in windows explorer
    5. Copy the ipa to desktop
    6. right click and press open with
    7. open file with winrar, winzip, what ever, something so you can see all the files
    8. open iTunesMetadata.plist with PLIST EDITOR
    9. search for "itemId"
    10. Delete the number under "itemId" in between </integer>
    11. leave One number remaining. (any number)
    12. save.
    13. double click your new ipa
    14. sync
    15. No more update badge
    DONE.
    remember to backup everything you change. just in case.

  • Hi I want to change my Apple ID email as I can no longer access my old email account. I try to change it to my new email but it says I'm already using it as my 'rescue email' so how do I remove or change my rescue email so that I can use it as my primary?

    Hi I want to change my Apple ID email as I can no longer access my old email account. I try to change it to my new email but it says I'm already using it as my 'rescue email' so how do I remove or change my rescue email so that I can use it as my primary email?

    Hey RachaelAnderson,
    Thanks for using Apple Support Communities.
    Looks like you want to change the email address you are using as your resuce email address. This article shows you how to change the addresses.
    Manage your Apple ID primary, rescue, alternate, and notification email addresses
    http://support.apple.com/kb/HT5620
    Have a nice day,
    Mario

  • HT6170 i forgot answers to my security question how do i remove or change these Q?

    i forgot answers to my security question how do i remove or change these Q?

    Alternatives for Help Resetting Security Questions and/or Rescue Mail
         1. If you have a valid rescue email address, then use this procedure:
             Rescue email address and how to reset Apple ID security questions.
         2. Fill out and submit this form. Select the topic, Account Security. You must
             have a Rescue Email to use this option.
         3. This is the only option if you do not already have a valid Rescue Email.
             These are telephone numbers for contacting Apple Support in your country.
             Apple ID- Contacting Apple for help with Apple ID account security. Select
             the appropriate country and call. Ask to speak to the Account Security Team.
         4. Account security issues almost always require you to speak directly to an
             Apple representative to securely establish your identity as the account holder.
             You can set it up so that Apple calls you, either immediately or at a time
             convenient to you.
                1. Go to www.apple.com/support.
                2. Choose Contact Support and click Contact Us.
                3. Choose Other Apple ID Topics and choose the appropriate topic for
                    your issue.
                4. Follow the onscreen instructions.
             Note: If you have already forgotten your security questions, then you cannot
             set up a rescue email address in order to reset them. You must set up
             the rescue email address beforehand.
    Your Apple ID: Manage My Apple ID.
                            Apple ID- All about Apple ID security questions.

  • How do i remove or change my primary apple id set on my imac

    How do i remove or change my primary apple id set on my imac.  My primary iCloud set on my imac shows the apple id i not longer use.

    Hey sqboulevard,
    If you want to change the Apple ID signed in to iCloud on your iMac, you would do so in System Preference:
    Mac Basics: Set your preferences
    http://support.apple.com/kb/HT2490
    Sincerely,
    Delgadoh

  • How do you remove this: META NAME="ColdFusionMXEdition" CONTENT="ColdFusion   DevNet Edition - Not for Production Use."

    Hi,
    How do you remove this: <META NAME="ColdFusionMXEdition"
    CONTENT="ColdFusion DevNet Edition - Not for Production
    Use."> since it
    automatically generates in my code when i run the application
    and it
    generates an error in the page.

    Deinstall the devnet version, and install the proper version.
    Adam

  • My ipad2 is asking old id password, when i go to forget password link for that id then I am not getting any mail to reset the same. Please help how can i remove or change the old id.

    my ipad2 is asking old id password, when i go to forget password link for that id then I am not getting any mail to reset the same. Please help how can i remove or change the old id.

    You cannot remove or change the old ID. This is Find My iPhone Activation Lock. You need to recover the credentials for the Apple ID originally used to activate the iPad.
    Check your spam and junk folders.

Maybe you are looking for

  • How to use multiple video files??

    hi all, i am using flex 4 ... now i have designed video player.. i used single flv file for execution.. how to use more flv files in tis program??? i have included program also.. can any one reply for this... thanks in advance... regards, saran r vid

  • The WEBUTIL object group is not available in this Form WebUtil cannot work

    I Attacth Lib Webutil create buttom on click CLIENT_HOST('cmd /c DEL c:\test.mmx'); while run form then click buttom alert error formsweb.cfg [webutil] #WEBUTIL_CONFIG=C:\DevSuiteHome_1\forms\webutil.cfg #WebUtilArchive=frmwebutil.jar,jacob.jar WebUt

  • SOAP --XI ---RFC or Java Client  Proxy

    Hello Gurus, Need your adivce for a scenario in XI Scenario ---  To implement XI with SAP SCEM(Supply Chain Event Management). Client is sending data from Web Portal (JSP Page) and wants to integrate with R/3. (Request from client and Response from R

  • When are the rentals going to start for this?

    I have an Apple TV (40g) and it's still the old firmware and says my software is up to date. what gives? user error? not released yet?

  • Emailing photos to friends

    When I email photos from my iphoto library to friends, I hit the "email" button at the bottom right part of the screen. It opens an email box, then strips in the actual photos into the message itself. There is no indication that the actual photo file