Using a "button to submit the user entered data in PDF format in mail

I created a form in which the user fills out the form and click on "Button" to submit data via PDF (attached to an email) to a specific e-mail (mailto:[email protected]). When the blank email to your colleagues, it does not have the function to work. Any help would be greatly appreciated!

Also if you have the time is there a way to set the order of the data when the user submit via xml?

Open the PDF in acrobat pro.

Click Advanced-> Extend features in Reader

Click Save now

try that saved form

Tags: Adobe LiveCycle

Similar Questions

  • JavaScript to invite the user to save in PDF format

    I make the changes with the code for the file. I want the user to be prompted to save as a file .ai first. I have that down. Now, I'm eager to have the user immediately prompted to save as pdf with only the option optimize for fast web view selected. I think it's an adobe built-in smallest file size.

    The reason for wanting the guest is because I want to save the files in 2 different places.

    Here is my code so far...

    var doc = app.activeDocument;
    // Save as .ai file  
    var fileName = doc.fullName;  
    var thisFile = new File(fileName);
    var saveFile = thisFile.saveDlg();
    doc.saveAs (saveFile);
    
    
    // Save as .pdf file
    var pdfSaveOptions = new PDFSaveOptions();  
    pdfSaveOptions.pDFXStandard=PDFXStandard.PDFXNONE;  
    pdfSaveOptions.compatibility = PDFCompatibility.ACROBAT5;  
    pdfSaveOptions.preserveEditability = false;  
      
    var pdfFile = new File(fileName);  
    doc.saveAs(pdfFile, pdfSaveOptions);
    
    
    
    

    HAVE CS4 Windows 7 64 bit

    the folder structure is already existing?

    If so, things are simple.

    If the name and the number are in the file you could draw that from the entry rather then manual doc to guests.

    (Note that there is no test to check the folders exist etc...)

    var job = prompt("Enter Job Name");
    var num = prompt("Enter Job Number");
    aiFile = "D:\\"+job+"\\"+num+"\\AI\\Schematic.ai"
    pdfFile = "D:\\"+job+"\\"+num+"\\PDF\\Schematic.pdf"
    
    var newaiFile = new File(aiFile);
    var doc = app.activeDocument;
    doc.saveAs (newaiFile);
    
    var pdfOpts = new PDFSaveOptions();
    pdfOpts.pDFXStandard=PDFXStandard.PDFXNONE;
    pdfOpts.compatibility = PDFCompatibility.ACROBAT5;
    pdfOpts.preserveEditability = false;
    var newpdfFile = new File(pdfFile);
    doc.saveAs(newpdfFile, pdfOpts);
    

    If you want the script to create the folders so it is a little more difficult.

    JavaScript will not do that, and you need another work autour.

    something like that...

    if (Folder(qfolder).exists){
    app.activeDocument.saveAs( saveName, saveOpts );
    }else{
               //alert("about to try bat");
               batpath= 'call "C:\\Adobe Scripts\\MakeDirectory.bat"';
                battemp = new File("C:\\Adobe Scripts\\tempBAT.bat");
                battemp.open("w");
                battemp.writeln(batpath + " " + qfolder);
                battemp.close();
                battemp.execute();
             //alert("Had to Create Folder, Please press OK to continue...");
                $.setTimeout = function(func, time) {
                        $.sleep(time);
                        func();
                };
             $.setTimeout(function(){ app.activeDocument.saveAs( saveName, saveOpts )},200);
             }
    }
    

    the MakeDirectory.bat is just:

    ECHO OFF
    CLS
    
    IF %1=="" GOTO BLANK
    
    SET savepath=%*
    MKDIR %savepath%
    GOTO FINISH
    
    :Blank
    ECHO No Folder provided
    GOTO FINISH
    
    :FINISH
    

    the tempBat.bat is used to call the MakeDirectory.bat with the name of the file as an argument.

  • How can I make the submit button that is activated after the user enters a digital signature?

    I have a form that contains a digital signature field. Once the user enters their digital signature, my "submit" button is disabled. I wanted that this remains activated for the user can submit the form with their digital signature and the form (in PDF format) as an attachment.

    I'd appreciate any help.

    Kind regards

    Fanny

    You can configure the fields of lock after the signing of the digital signature. In Livecycle Designer across this field properties: object-> TAB Signature properties. Here can exclude the button submit or any other field, if necessary, do not lock after signing.

    -Rambeau.

  • Slide auto is using of multiple text entry boxes once the user enters two of the six answers

    I have several areas set up on a slide text entry.  The user must enter the answer in each text box.  And even though I have properties of all TEB "break from legends of success or failure", auto slide advance once the user enters only two of the six responses.  I thought that perhaps insert a click box and setting ' to pause until the user clicks on "would resolve the issue... but it is not.  Here's a screenshot of what my slide looks like and a screenshot of the properties that I set myself for each TEB.  Can someone help me please?  I need all six TEB to complete before moving to the next slide.

    TEBs.PNG

    TEB properties 1.PNG

    TEB properties 2.PNG

    The most important screenshot is missing: chronology. Where are the pausings for the TEB?

    You can start by changing the Actions on the success and the last attempt: they are both set to Continue, which means the playhead will be published immediately after a good response and after exhausting attempts in case of wrong answers. Set them to any Action.

    No Submit button? Only shortcut key entry for each TEB?

  • Get the field to remain Virgin until the user enters the value in the previous field used in the calculation

    I work on a PDF form and am stuck on one of my calculations. There are two fields 'desired Start Date", which is a date entered by the user. The "desired end" date is one year from date entered by the user. I figured out - however, before the user enters a date, I want this field remains empty. Currently, it fills with 01/00/000. How can I get this field to calculate not unless a date is entered by the user? So far, I tried this but can not get the blank to stay:

    If the field 'Desired Start Date' is empty, leave 'to' field blank

    var myStartDate = new Date (this.getField("Desired_Effective_Date").value);

    If (((myStartDate == 0) & & (getField("myStartDate").valueAsString = "")) {event.value = "";})

    If the field "Desired Start Date" is an effective date, use the date to calculate one year after the date of entry.

    }

    else {this.getField("to").value = util.printd ("mm/dd/yyyy", new Date (myStartDate.getFullYear () + 1, myStartDate.getMonth (), myStartDate.getDate ()))}

    Try the following than the calculation script custom field "to".

    Get the value of the date field beginning

    var sStartDate = getField("Desired_Effective_Date").valueAsString;

    If the start date field is not empty...

    If {(sStartDate)

    Converts a date in a date object string

    Kai = util.scand ("mm/dd/yyyy", sStartDate);

    Add a year

    oDate.setFullYear (oDate.getFullYear () + 1);

    Set this field to the calculated date value

    Event.Value = util.printd ("mm/dd/yyyy", anyway);

    } else {}

    This field blank because the input field is empty

    Event.Value = "";

    }

    You may need to change the date format "mm/dd/yyyy", I used to match the formats of date fields.

  • URL of list of the user-entered recordable

    I found the following on the net which is a basic example of using the sharedObject method to allow users to record data, however I would like to improve this example, whereas in the text box, the user can enter different URLS, then when each url that the user entered is clicked, it will sail to that specific page.

    I know that allowing a user to simply enter a url into a single text box and then have the link to the relevant site once clicked is a simple process, but I want to achieve this in the following example, so that users can save their list of URLs, return their entire list empty or perhaps remove each link individually by clicking on it , and then clicking a button Delete.

    My main problem is that it seems the selectedItem.text property are not accessible in order click on a text box and apparently not the itemClick function is available in a text box as it can in a TileList for example, so I don't know how I can get it to navigate to the url contained in each element when each item is actually clicked. The text box should be changed to another type of component to integrate it? :-

    <? XML version = "1.0" encoding = "utf-8"? >

    < mx:Application ' xmlns:mx = ' http://www.Adobe.com/2006/MXML "

    " layout ="absolute"" "

    creationComplete = "initSharedObject ()" " >

    < mx:Script >

                <! [CDATA]

    import flash.net.SharedObject;

    public var sharedObj:SharedObject;

    private function initSharedObject():void{ }

    sharedObj = SharedObject.getLocal ('myTasks');

                    if (sharedObj.size > 0)

    textareaTasks.text = sharedObj.data.tasks;

                }

    public function localconnectionHandler(msg:String):void { }

    textareaTasks.text = textareaTasks.text + msg + "\n"

              }

    private function clearTasks(event:MouseEvent):void { }

                  = textareaTasks.text "" ;

              }

    private function saveTasks(event:MouseEvent):void { }

    sharedObj.data.tasks = textareaTasks.text;

    sharedObj.flush ();

              }

    private function deleteSavedTasks(event:MouseEvent):void { }

    sharedObj.clear ();

                }

                ]] >

    < / mx:Script >

    "" < mx:Panel horizontalCenter = "0" red ="0.5" verticalGap = "15" " "

    "" paddingLeft = "20" paddingRight ="20" paddingBottom = "20" paddingTop ="20"" "

                  height=" 300 " >

    " < mx:Label text = 'your tasks are... " />

    " < mx:TextArea id ="textareaTasks"" "

    top=" 20 "left =" 20 "right =" 20 "bottom =" 20 "

    width=" 100% "height =" 100% " />

    < mx:HBox >

    " < mx:Button id ="btnClearTasks"click ="clearTasks (event)"

                            label=" Clear Tasks " />

    " < mx:Button id ="btnSaveTasks"click ="saveTasks (event)"

    " label = 'record the tasks to the Shared Object"""/ >

    " < mx:Button id ="btnDeleteSavedTasks"click ="deleteSavedTasks (event)"

    " label = 'delete saved tasks Shared Object"""/ >

                < / mx:HBox >

    < / mx:Panel >

    < / mx:Application >

    If this post answers your question or assistance, please mark it as such.

    Very well. The shared object works correctly now. Only the file from the main application had to change. The AddURL component above is fine as it is:


    http://www.Adobe.com/2006/mxml '.
    layout = "absolute" creationComplete = "initSharedObject (); » >
     
        Import mx.events.ListEvent;
    Import mx.collections.ArrayCollection;
    import flash.net.SharedObject;
    Import mx.managers.PopUpManager;
    import AddURL;

    private var sharedObj:SharedObject;
    [Bindable] public var urls:ArrayCollection;
         
    private function initList (): void {}
    URL = new ArrayCollection();
    }

    private function initSharedObject (): void {}
    initList();
    sharedObj = SharedObject.getLocal ("urls");
    If (sharedObj.size > 0) {}
    var urlList: Array = sharedObj.data.urls.split(",");
    URL = new ArrayCollection();
    for each {(var url: String en urlList)}
    If (url! = "") {}
    var urlObj:Object = {url: url};
    urls.addItem (urlObj);
    }
    }
    }
    }

    private void saveUrls(event:MouseEvent):void {}
    var urlList: String = "";
    for each {(var obj:Object in the URL)
    urlList += obj.url + ",";
    }
    sharedObj.data.urls = urlList;
    sharedObj.flush ();
    }

    private void deleteSavedUrls(event:MouseEvent):void {}
    sharedObj.clear ();
    initList();
    }

    public void gotoURL(evt:MouseEvent):void {}
    navigateToURL (new URLRequest (urlList.selectedItem.url), "_blank");
    }
         
    private function addURLDialog (): void {}
    PopUpManager.createPopUp (this, AddURL, true);
    }
         
    public void addURL (url: String): void{}
    urls.addItemAt ({url: url}, 0);
    }
    ]]>
     
     
    paddingLeft = "20" paddingRight = "20" paddingBottom = "20" paddingTop = "20".
    height = "500" >
       
         
               
       

       
    Low = "20" width = "100%" height = "100%" dataProvider = "{URL}".
    alternatingItemColors = "[0xcee7f6, 0xf4d5f7]" rowHeight = "30" >
         
           
             
               
    Click = "outerDocument.gotoURL (Event); » />
               
               
    Click = "{outerDocument.URLs.removeItemAt (outerDocument.UrlList.SelectedIndex)}" / > "
             

           

         

       
       
         
    label = "URL" clear / >
         
    label = "Save URLs to Shared Object" / >
         
    label = "delete saved Shared Object URLs" / >
         
    label = "reload saved Shared Object URLs" / >
       
     

  • Pop - up Messagebox when the user enters an incorrect value in the TextField

    I want to display a pop-up message box when the user enters an invalid value, or an empty value in the TextField.

    Popup wil Messagebox displays a notification message to the user to enter the correct value in the textfield.

    I want to use c + c++ / qt code cascades.

    Have you made progress on this issue?

  • How to create a button that allows the user to check their form to find errors?

    Hello

    I use LiveCycle ES3.  I would like to add, at the end of my form (independent, NOT on a web form), a button that allows the user to check their form for errors, and then display a list of errors and highlight areas with errors.  Finally, he must turn off highlight these fields when the errors have been corrected.

    Also, in the form, if the user makes selections, they must include an attachment with their form.  I want to make sure when they make selections that requires an attachment, a field is generated at the end of the form that lists all required attachments.  Is this possible?

    Thank you.

    The button validate calls a Script called "controller" object If you look at the hierarchy of the form Variables example there are two Script objects: controller and validation. Script objects are used to maintain the reusable script functions.

    You have to re-create those for validation to work. If you right click on 'form1' (or whatever your node in the foreground is called in the hierarchy), you can select "insert a Script object. You will need to do it twice.

    In the hierarchy, there is then a node Variables with two Script objects. Name them even as the form of the sample and copy and paste the sample form scripts in them.

  • Procedure for the number of working days per month when the user enters to and from everyday

    Hi all

    Can provide you a solution to this - procedure for the number of working days per month when the user enters and days.

    Suppose that the user enters November 18, 2014 start date and date as November 23, 2014.

    The output should display

    Count: 4

    November 18, 2014 Mar

    Sea 19 November 2014

    November 20, 2014 game

    Fri November 21, 2014

    It will exclude Saturday and Sunday.

    Hello

    Here is an example of removing dates Saturday and Sunday:

    with days as(
         select (trunc(sysdate, 'YEAR') + level) as col from dual
         connect by level < 365
    )
    select * from days
    where trim(to_char(col, 'DAY', 'NLS_DATE_LANGUAGE=ENGLISH')) not in ('SATURDAY', 'SUNDAY')
          and col between to_date('18.11.2014', 'DD.MM.YYYY') and to_date('30.11.2014', 'DD.MM.YYYY')
    order by col;
    

    Cheerz,

    Stako

  • Show/Hide button, based on the user variable

    I have a variable "videoDone" which is set to 1 when the SWF on my Captivate slide is completed.

    My next button is hidden when the slide is displayed (Next hidden if the button videoDone = 0)

    How to make the next visible button without having the user to interact with something on the slide? I want to not visible when videoDone = 1?

    I can make it appear if I add a button to the screen that has a fast action (if videoDone = 1 show Next_button) but I want the next button to simply appear.

    You need an event to trigger an action, and Captivate has no time-based events. It is impossible with the timeline?

    Events / Actions (Advanced) - Captivate blog

  • How to use JavaScript to limit the number of boxes to check the user can select a PDF form?

    How to use JavaScript to limit the number of boxes to check the user can select a PDF form?

    Here's the working solution

    Please rename all the boxes like chkBox0, chkBox1... .chkBox30 (must start with 0)

    Value of exports of each checkbox must be "Yes" (default value is Yes)

    Place this Code at the level of the Javascript Document

    -Code JavaScript document-

    var counter = 0;                Checked the meter

    -Count boxes checked again when the document is closed and reopened.

    for (var i = 0; i)<= 30;="">

    If (getField("chkBox"_+_i).value == 'Yes') {}

    Counter += 1;

    }

    }

    -The function of validation-

    function validateCheckBox(name,value) {}

    If (value == 'Yes' & meter)<>

    Counter += 1;

    } else if (value == 'Off') {}

    counter = 1;

    } else {}

    getField ("name") .value = "Off";

    App.Alert ("you can select only four checkboxes");

    }

    }

    -End of Document Javascript-

    Now put this line in the MouseUp event all checkboxes

    Box - Code MouseUp event.

    validateCheckBox (event.target.name, event.target.value);

    //----------------------------------------------------------------------------------

    Hope this will help

    Kind regards

    Post edited by: Mohammad Irfan

  • Date field time: make calendar will appear when the user enters form.

    It is possible with JavaScript to make the calendar will appear once the user enters the date/time field (click and activate the date field time)?

    The field default time is really limited and the calendar can hardly be noticed.

    Thanks in advance!

    Hello

    as much as I know there is no to open the widget calendar via script.

  • Check the box if the user enters the value field or text date input

    I have a business that, the rule of a JSF page with several components and groups. If the user enters the value in a date component or an input text component a selectOneCheckBox must be checked automatically. And even unchecked if the value of the field date field or text entry is deleted. I followed so far recommended for part of the ADF. I don't know what layer of the application of these rules should be applied.

    Please suggest how to get this implemented business rule

    Concerning

    You can implement the required functionality in the user interface layer.

    Here is the snippet of code for features:
    (1) page JSPX:




    Binding = "#{UIPageBean.inputDate} '"
    valueChangeListener = "#{UIPageBean.inputDateChanged}" / >

    Binding = "#{UIPageBean.inputNumber} '"
    valueChangeListener = "#{UIPageBean.inputNumberChanged}" / >

    readOnly = "true" simple = 'true '.
    Binding = "#{UIPageBean.CheckBox} '"
    partialTriggers = "id1 it1" / >

    (2) code Bean:

    public class UIPageBean {}

    Private RichInputText inputNumber;
    Private RichInputDate date. MinValue;
    box private RichSelectBooleanCheckbox;

    public UIPageBean() {}
    }

    {} public void setInputNumber (RichInputText inputNumber)
    this.inputNumber = inputNumber;
    }

    public RichInputText getInputNumber() {}
    Return inputNumber;
    }

    {} public void setInputDate (date RichInputDate. MinValue)
    this.inputDate = date. MinValue;
    }

    public RichInputDate getInputDate() {}
    Return date. MinValue;
    }

    {} public void setCheckBox (RichSelectBooleanCheckbox box)
    this.checkBox = checkBox;
    }

    public RichSelectBooleanCheckbox getCheckBox() {}
    return box;
    }

    {} public void inputDateChanged (ValueChangeEvent valueChangeEvent)
    this.checkBox.setSelected (false);
    If (this.inputDate.getValue ()! = null &)
    this.getInputNumber () .getValue ()! null = &.
    this.getInputNumber () .getValue () () ().equals("") .trim m:System.NET.SocketAddress.ToString is
    false) {}
    this.checkBox.setSelected (true);
    }
    }

    {} public void inputNumberChanged (ValueChangeEvent valueChangeEvent)
    this.checkBox.setSelected (false);
    If (this.inputDate.getValue ()! = null &)
    this.getInputNumber () .getValue ()! null = &.
    this.getInputNumber () .getValue () () ().equals("") .trim m:System.NET.SocketAddress.ToString is
    false) {}
    this.checkBox.setSelected (true);
    }
    }
    }

    Thank you
    Nini

  • How the PopUp open for every 15 minutes until the user saves data

    Hi all

    I'm working on an application where I need to open a popup for every 15 minutes until the user saves data and stop after users register data. I'm not able to get the idea on how it could be done. Please post some views in which it could be done.

    Thanks in advance.

    Hello
    an alternative is the uncommittedDataWarning property is one out of the box functionality, but don t has setup time.

    https://blogs.Oracle.com/Shay/entry/warning_of_uncommitted_unsaved_changes

    If not, you can use an af:poll in combination with a pop-up message

  • Get errors for the user input data filter no KB 911895 HID

    OT: iI have windows xp S/P 3 installed also apple i pad I get errors for the user input data filter no KB 911895 HID
    What should I do to get rid of this popup that wizzard windows keeps giving me?

    Hi Graybeard,

    What is the exact error message you get?

    HID Non-User Input data filter is an optional update. I suggest you try the steps from the following link:

    The screen saver does not start after the installation of a wireless pointing device
    http://support.Microsoft.com/kb/913405

    What version of the operating system Windows am I running?
    http://Windows.Microsoft.com/en-us/Windows7/help/which-version-of-the-Windows-operating-system-am-i-running

    Troubleshooting Windows Update or Microsoft Update when you are repeatedly offered an update
    http://support.Microsoft.com/kb/910339

Maybe you are looking for

  • Satellite A110-153: Wlan does not work - disabled WiFi connection

    I bought a Toshiba A110-153 · Via a cable to the router (lan) internet working properly.· But doen't work wireless. A few observations:· The wireless led burns and is connected.· In network connections, I got the message wireless network connection d

  • Trainer new installation &amp; hdd to t790 - serious problems

    I bought a Designjet t790 (very cheap) opportunity, and for some reason, the seller does not give me the trainer on board with the printer. Without the printer formatter showed error 08:11 - "no communication between the product and the touch control

  • Faced with the simple series comms

    Hi all - summer tweak something that should be simple for hours now, so I'll ask for help... I have a RS485 device connected to COM5 via a USB adapter, work at 9600 baud, 0,8,1, no - fundamentals of series. I can talk to the device using the terminal

  • How can I download the firmware for another platform

    Hello. I am trying to download the update of firmware for WRT160N (HW ver3) for a router connected to a XP machine. I download a bin file from a Mac and the download page for show me, but I think that's a Mac - I need the (32-bit) version of Windows

  • DV6 3219tx xp downgrade. No sound at all and can not install any MS - UAA at all. Help, please

    I need to downgrade to XP SP2 due to work. I work for a public service and I tried everything about compatibility. I can't afford the upgrade 7 Ultimate. I have XP Home and they install ok but I can not install the drivers for the sound. DECCOM opens