Hello all,
I have a dynamic form created in Adobe Livecycle Designer ES, which contains a number of subforms positioned inside a flowable page. I want to have two text fields inside one of the subforms work so that text entered into the first text field (non-expandable) will continue into the next text field (which is an expandable field.) I know that there is a script inside Acrobat which will do this, but can't figure out how to write a JavaScript for the livecycle designer form.
Both fields work as stand-alones with no problem, but not as described above.
(Here is the Acrobat XI script, which doesn't work for in livecycle, but give some idea of what I am trying to do:
Action: Triggered on mouse up/Execute menu item
/*********** belongs to: AcroForm:textfield1:Keystroke ***********/
if ( event.fieldFull || event.willCommit )
this.getField("textfield2").setFocus();
//</ACRO_script>
//</AcroForm>
Is there a corresponding JavaScript for livecycle? Thanks for any suggestions!