Copy link to clipboard
Copied
I am creating a fillable form that needs to be filled out very quickly, so ease of use is of the utmost importance. I have pages that contain many check boxes, but when the user is tabbing through, I don't want them to have to hit tab to pass each one of these check boxes to get to the next text field. Is this possible? I am on a working on a Mac using Adobe Acrobat Pro XI.
It's possible to use JavaScript in a field's On Blur event to force the focus to a particular field. So one approach you can take is to set the tab order so that the field's you want excluded are at the end, and in the last field that you want in the tab order do something like:
// On Blur script for a field
getField("name_of_field").setFocus();
where "name_of_field" is the name that you want to set the focus to.
Copy link to clipboard
Copied
No. The only way to exclude fields from the tab order is by setting them as
read-only.
On Mar 11, 2016 1:00 AM, "Jennifer Sculley" <forums_noreply@adobe.com>
Copy link to clipboard
Copied
‌thank you for the response. Is there any workaround to have an interactive object with on/off states besides a check box that could be bypassed in the tab order?
Copy link to clipboard
Copied
It's possible to use JavaScript in a field's On Blur event to force the focus to a particular field. So one approach you can take is to set the tab order so that the field's you want excluded are at the end, and in the last field that you want in the tab order do something like:
// On Blur script for a field
getField("name_of_field").setFocus();
where "name_of_field" is the name that you want to set the focus to.
Copy link to clipboard
Copied
It works! Thank you so much!
Find more inspiration, events, and resources on the new Adobe Community
Explore Now