February 11th, 2009, by Bodie Leonard
How to use tabIndex and getting rid of the yellow box in AS 3.0
Enabling tabIndex
You can either code all your tabIndex’s or you can use the Accessibility panel to set the Tab Index which can be found in Windows > Other Panel > Accessibility or shortcut Shift F11.
elementName.tabIndex=1; // numbers from 1 – 65535
Enable any elements that are not to be used by tab shortcut key
elementName.focusRect = true;
Once [...]








