I would like to create loop to check data entered by user into TextField with all array values in global variable. I tried like this:var i = 0; for (i = 0; i < 3; i++) { if (txtName.rawValue == _Name[i]) { xfa.host.messageBox("Your NAME is correct."); } } if (i == 3) { ...
Ok, sorry for the question, it might have been answered before but need help... I am making a table in Livecycle with buttons for adding new rows. Have found the script for this, and it is working. So now we need to be able to add a new line inbetween the other rows. This would be a row without c...
I have designed a form where an externally created XML file is imported into the form via xfa.host.importData(); This typically works great except when there are certain special characters in the XML fields (&, accent symbols, etc.). In this case, the form just goes blank. I've been able to replace ...
I am creating an order form for a client. I need a button that, on click, creates both a PDF file and an XML data file and attaches both to the same email. So far, I am failing gloriously on coming up with something that works. I am currently working in Adobe LiveCycle Designer ES4. Any help would b...
I'm trying to figure out how to use global variable array. I found postmyArray is not behaving as GLOBAL scope?I did exactly like explained in that post. But when I click button I got such error message result:How fix it?Thanks.
I have designed a 5 question survey that has multiple subparts to each question. The use checks a Yes or No Check box for each subpart and i have built if/then statements that yield, for each question, a text outcome (Outcome 1 or Outcome 2).I want to create an overall scoring for the survey. I was ...
Hello everyone. I've been trying to find a nice way to format a field while the user is typing.For example:Raw input: 123456Expected Format: 123.456So, when the user types 1234 it should instantly change to 1.234I've juggled a bunch of hacky workarounds such as unfocusing and re-focusing the field b...
I can not submit my form because I can not disable a invisible Mandatory DDL.I have try: form1.PageA.Sub_B.Table2.Row1.DDL.mandatory = "disabled"; but does not work!I control this DDL from another DDL with a script on change:switch (xfa.event.newText) { case "Kimel": form1.PageA.Sub_B.Table2.Row1.DD...
Hi all,Have a little queston regarding master pages, I have an adobe form with one master page and one main page. The master page has a header section, content area and at the bottom a table with two columns, the idea is that this table works as a footer. This table just has one row and two columns,...