screen.tabIndex

Availability

Flash MX 2004.

Usage

screen.tabIndex

Description

Property; equivalent to the Tab Index field in the Accessibility panel. This value lets you determine the order in which objects are accessed when the user presses the Tab key.

Example

The following example gets the tab index of the object:

var theTabIndex = fl.getDocumentDOM().screenOutline.screens[1].tabIndex;

The following example sets the tab index of the object to 1:

fl.getDocumentDOM().screenOutline.screens[1].tabIndex = 1;