Originally published on 2017-12-06

When there is a need to flow text to next filed,

Field

Adjust field properties

Field Prop

// Document-level function
function nextTab(fieldName)
{
if (event.willCommit || event.fieldFull) this.getField(fieldName).setFocus();
}
//Keystroke script of a text field:
// Autotab to the "text2" field
nextTab("text2");