Copy link to clipboard
Copied
How do I get the tabbing order to go from the last form field on the first page to the first form field on the second page?
Copy link to clipboard
Copied
If does that automatically. However, if there are links and/or comments on the page they'll be next in the tabbing order, after the fields.
The only way around that is by using a script that "jumps" to the first field in the second page after exiting the last field on the first page.
Copy link to clipboard
Copied
I'm in Acrobat Pro XI and it won't go to the next page automatically. It just goes back to the top of the first page. Do you have a script that would work???
Copy link to clipboard
Copied
As the On Blur event of the last field enter this code:
this.getField("Name of first field on next page").setFocus();
Copy link to clipboard
Copied
You are the absolute best! It worked! Thank you!
Copy link to clipboard
Copied
OMG, this is exactly what I was looking for! Thank you!