Using LC ES4. I have a form that uses the same floating field multiple times, however, it will only populate the first instance. Document is saved as dynamic. What am I doing wrong?
Hi There, I am fairly new to LiveCycle and have inherited forms from a variety of people. I have been asked to add a an expandable table that could potential go beyond the page it has been set up on. I have successful add the table and have been able to make it expand beyond the 1st page but I am wo...
Hello,how can i access a node of a xml-file looks like this:<RootNode> <EntryNode> <ColumnA>Some Value A</ColumnA> <ColumnB>Some Value B</ColumnB> </EntryNode> <EntryNode> <ColumnA>Some Value C</ColumnA> <ColumnB>Some Value D</ColumnB> </EntryNode>...
My table needs to repeat on each page for each looping item in my XML. My table is inside a subform which has "Repeat Subform for Each Data Item" checked. My form is working except a blank page is always added to the end of the document. I tried making the table smaller, I tried removing the bord...
I need to modify an existing form. When opened in LC ES3 i can't edit regular text, the solution to which seems to be to "Save As Copy" In order to clear some security settings. After doing this all the fields disappeared and I still couldn't edit the regular text. I looked for an answer in JP Terry...
Trying to generate a simple printable form, I have encountered the following problem: I need a square button with two alphabetic characters, which can either be made visible / invisible or highlighted on mouse click. Is it possible to modify a checkbox by using a certain script, so that the checkmar...
Is there a way to script to change all of the text in a textField back to text color black ("0,0,0") if a user has changed the text color using the Form Field Text Properties Bar? It looks like that is done on a separate layer?I tried this and it does not work:Subform1.UpperSection.font.fill.color.v...
Is there a way to create a paragraph where the form user has to enter text within the paragraph itself and the other text following will move/adjust and wrap as needed?Example of what I mean:The undersigned company, [ENTER YOUR COMPANY NAME HERE], organized under the laws of the State of [ENTER THE ...
I'm trying create function to validate with limit login attempt. That is my code:var attempt = 3; // Variable to count number of attempts.function validate() {var username = form1.page1.subLogin.txtUserName.rawValue;var password = form1.page1.subLogin.txtPassword.rawValue;for (var i = 0; i < 2; i++)...