![]() ![]() | |
Flash Player 6.0.79.
Flash MX 2004.
focusManager.enabled
Property; a Boolean value that determines if tab handling is turned on (true), or not (false) for a particular group of focus objects. (For example, another pop-up window could have its own FocusManager.) Setting enabled to false allows a component to receive the tab handling keys and handle them internally. You must re-enable the FocusManager handling by watching the component's onKillFocus() method (see MovieClip.onKillFocus in ActionScript Dictionary Help) or focusOut event. The default value is true.
The following code disables tabbing:
focusManager.enabled = false;
![]() ![]() | |