Moving to next text field using ENTER key
Hello, I'm relatively new to JavaScript and any help is greatly appreciated.
I have a form with multiple columns that a user will be filling out. The columns need to be filled out top to bottom. I would like to use the ENTER key to move to the next field in the column. I am aware that the TAB key is the default choice of Adobe, but it is not a logical choice for the users that will be using this form. Currently I have been using the script below to move from the first text field to the second. Is there a way for me to apply this script to the enite column without having to place the script in each text field's Custom Keystroke script area? I am using Adobe Acrobat Pro 2017 Thanks.
if (event.commitKey === 2) {
getField("Plant Sample Row2").setFocus();
}
