Hi,i am creating a form in livecycle with expandable text input boxes. when filled the text boxes can flow onto the next page. I'd like to set up the form so as that when the text expands onto a new page a header and footer appear on the new page. is this possible?
when a form is launched in the WorkSpace, there's a row of buttons (Reader) above the main form window, when I click the "Save" button, it pops up a save-to-file window filled with a default filename.My question is: is there a way to change that default filename from my Application programmtically/d...
I am creating a form for the Engineering Department. The end users need to be able to insert a GDT symbol into a textfield sentence. The sentence uses standard font (Myriad Pro) but the GDT symbol uses the GDT font. Is there a script I could attach to a checkbox that when checked, would allow the us...
Hi Sorry for the very basic question but I have an irritating problemI created some LC forms which have the functionality that if you select a certain country some fields appear/dissapear depending of the choice of the country.I also attached a 'send form' button so that the filled form is mailed ba...
Hi,I am trying to create school fee calculator on a direct debit form. At the moment all I achieved is sum. There is some conditonal discount available and I would like to add them into the form so its gonna be more interactive and helpful for the parents. I just uploaded the form to the following l...
I have a form that has 9 pages,I want to dynamically remove the 1st page by clicking a button.so I wrap the entire 1st page in a sub-form,flowed,min count 0,initial count 1.and the _xx.removeInstance(0) is in the click event of the button.but when I click it, the 1st page got wiped clean, it doesn'...
I have a numeric field that calculatesa total. I have a text field that I want to look at the numeric field and based on what thenumber field says enter text.This is what I have for my calc right now...its not working...I don't know if it should be formcalc or javaif (TextField2.rawValue == 16 or 1...
HelloI can set the Package for the generated code e.g, com.xyz.entities and can see that the java files are created in that package folder. However when the webapp is deployed and you see the logs, you will see that the following :-"Configuring delegate assembler for entity : <ModelName>.package1.<...
I have two check boxes if both check boxes are checked then another field would display a number. How do I get my calcualtion to work?This is what I have so far for the calc.if ((this.rawValue ==1) (CheckBox4.rawValue == 1)){NumericField1.rawValue= 4}