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

In LiveCycle Design, I understand how to set the tabbing order of form fields on a page. How does one cause the cursor to advance to the first form field of the next page instead or returning to the top of the just completed page?

My Product Information:
Acrobat Pro 8.0999999999999996447286321199499070644378662109375, Windows
pddesigner
Registered: Jul 9 2006
Posts: 858
There are three options for tab order:

You can specify tabbing by rows ("rows"), columns ("columns"), or document structure ("structure").

For example, the following code sets up tabbing by rows for page 2 of the document:

this.setPageTabOrder(2, "rows");

To set the tab order on each page of the document, you would execute a script like this:

for (var i = 0; i < this.numPages; i++)
this.setPageTabOrder(i, "rows");

My favorite quote - "Success is the ability to go from one failure to another with no loss of enthusiasm.

aikencountysheriff
Registered: Sep 11 2007
Posts: 6
Thank you, but you are talking to a average user. I do not understand your explanation or where to g in LiveCycle to fix the problem.