These forums are now Read Only. If you have an Acrobat question, ask questions and get help from one of our experts.

TABBING ORDER - ADVANCE TO NEXT PAGE

aikencountysheriff
Registered: Sep 11 2007
Posts: 6

I am a new AA 8 Pro user, but have learned how to set the tab order for form fields on a page. When I hit the tab button after filling in the last field at the end of the page, the cursor moves back to the top of the page. How can I make the cursor advance to the form field at the beginning of the next page?

dbrooks
Registered: Sep 6 2007
Posts: 33
In LiveCycle Designer, I believe you have to go to the next page and then set the tab order for that page. When I did that to a form I created, I was able to tab from the last field on my first page to the first field on my second page. Of course, if there's a better way to do it, I'm all ears!
UWDan
Registered: Dec 9 2011
Posts: 2
Problem: Cannot move by tabbing from last check box on page one to first check box on page two.

I am using Adobe Acrobat X Pro and I have created a two page form. After some problems I was able to arrange tab ordering as desired; however, after tabbing to the last checkbox on page one and entering, the cursor stays on page one rather than moving to the first checkbox on page two.

Any solutions?

Dan

maxwyss
Registered: Jul 25 2006
Posts: 255
If you make PDF forms (instead of XFA stuff using LiveCycle Designer), you add something like the following code into the onBlur event of the last field on the first page:

this.getField("nameOfMyFirstFieldOnFollowingPage").setFocus() ;

and that will get you there.

If you want to make it fancy, and be able to get back (when you press Shift-Tab, you would also add to the first field on the following page something like:

if (event.shift) {this.getField("nameOfMyLastFieldOnPreviousPage").setFocus() }

And that would do it.

Hope this can help.

Max Wyss.

UWDan
Registered: Dec 9 2011
Posts: 2
Thanks, Max, that is perfect!

Dan