Answered
Can I wrap or chain two form fields together so that the text put in by a user will flow from one text box on to another?
Can I wrap or chain two form fields together so that the text put in by a user will flow from one text box on to another?
if(!event.willCommit){if(event.fieldFull){var oFld = this.getField("Text2");oFld.value = event.change;oFld.setFocus();}}
You'll need to read about the "event" object in the Acrobat JavaScript Reference and do some testing to get a handle on this.
Thom Parker
The source for PDF Scripting Info
www.pdfscripting.com
Very Important - How to Debug Your Script