This content has been marked as final.
Show 1 reply
-
1. Re: set to press the enter key to move to next field on form? 9 pro ext-
George_Johnson May 17, 2011 10:54 AM (in response to seleene9)It's possible, but you have to use JavaScript. For example, create a new document-level JavaScript and add the following function to it:
function goNext(sNextField) { // Set the focus to the next field if (event.commitKey === 2) { getField(sNextField).setFocus(); } }You then have to call it like this from the Format (or Keystroke) event of a text field:
goNext("text2");Where "text2" is the field name of the next field.

