Skip to main content
Participant
May 9, 2017
解決済み

Set tab order in Adobe Acrobat Pro DC

  • May 9, 2017
  • 返信数 1.
  • 5186 ビュー

We are trying to set the Tab order on a form using Adobe Acrobat Pro DC, but we cannot set a tab from page 1 to page 2 of the form.  We could do it in Adobe Pro 11.  Did we lose this functionality in DC???

このトピックへの返信は締め切られました。
解決に役立った回答 ZoPaars

The tab order is set per page. Once you reach the last in the tab order on a single page, you can tab to the first in the order on the next page. You can't define a tab order that goes back and forth between pages. I'm unsure if this was possible in XI, but is certainly is not possible in DC.

However, you can built a work-around for this. You could add a custom event to change the focus to another field when exiting a field.

To do this, set an "On Blur" action for the field you would tab out of. Select "Run a JavaScript" and add the following JavaScript:

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

Use the name of the field you want to tab to instead of "FieldName" in the example (you need to keep the quotation marks).

Now when you tab out of that field, the code will switch the focus to the other field. Keep in mind that this doesn't change your actual tab order!

返信数 1

ZoPaars解決!
Inspiring
May 9, 2017

The tab order is set per page. Once you reach the last in the tab order on a single page, you can tab to the first in the order on the next page. You can't define a tab order that goes back and forth between pages. I'm unsure if this was possible in XI, but is certainly is not possible in DC.

However, you can built a work-around for this. You could add a custom event to change the focus to another field when exiting a field.

To do this, set an "On Blur" action for the field you would tab out of. Select "Run a JavaScript" and add the following JavaScript:

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

Use the name of the field you want to tab to instead of "FieldName" in the example (you need to keep the quotation marks).

Now when you tab out of that field, the code will switch the focus to the other field. Keep in mind that this doesn't change your actual tab order!

kenl29977704作成者
Participant
May 9, 2017

Thanks for the info.  That does work....but here's what we have:  We have a 3 page document with a "Print" button on Page 1 which but our SOP has to be located on Page 1.  But, we want it be the last tab after filling out the document.  So, given your Javascript I was able to get the tab set as the last field, so now is there a way to skip tabbing to that "Print" field in the normal tab sequence???  Hopefully that makes sense.

Inspiring
May 9, 2017

You can add a similar JavaScript to the field in the tab order before the print button and have it redirect to the field in the tab order after the print button. That way you effectively skip the print button in the tab order.

If this satisfies your question, please mark your question as answered and any helpful posts as helpful.