Copy link to clipboard
Copied
This question was posted in response to the following article: http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/fl/managers/FocusManager.html
Copy link to clipboard
Copied
In case you were befuddled... if you want to do a tab loop in a certain clip, for instance, myPopUp, then you just use
fm = new FocusManager(myPopUp);
Use the tabIndex property to dictate the order if it is not in the order that you want.
myText.tabIndex = 1;
myText2.tabIndex = 2;
myButton.tabIndex = 3;
myCancel.tabIndex = 4;
Find more inspiration, events, and resources on the new Adobe Community
Explore Now