Extending Flash |
|
|
|
| Objects > Screen object > screen.tabIndex | |||
Flash MX 2004.
screen.tabIndex
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.
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;
|
|
|
|