Object +--mx.accessibility.AccImpl +--mx.accessibility.SimpleButtonAccImpl +--mx.accessibility.ButtonAccImpl
This is the accessibility class for Button. This AccImpl class would be used in CheckBox and RadioButton as these components inherit Button Class. If accessibility has to be enabled in a component, the following code should be written in the first frame of the FLA file import mx.accessibility.ButtonAccImpl; ButtonAccImpl.enableAccessibility();
accessibilityHooked
, master
, owner
_onRelease
, _setLabel
, accessibilityHooked
, EVENT_OBJECT_NAMECHANGE
, EVENT_OBJECT_STATECHANGE
, owner
, ROLE
, STATE_SYSTEM_PRESSED
_accImpl
, master
, ROLE
, STATE_SYSTEM_NORMAL
, stub
__proto__
, constructor
, prototype
new ButtonAccImpl()
master:Object
owner:Object
static accessibilityHooked:Boolean
static function enableAccessibility()
Method call for enabling accessibility for a component This method is required for compiler to activate the accessibility classes for a component
- See Also
mx.accessibility.ButtonAccImpl
function createAccessibilityImplementation()
Method for creating Accessibility class. This method is called from UIObject. Accessibility enabling code should be already written in the first frame of the FLA before this method is called
static function hookAccessibility():Boolean
Static Method for swapping the createAccessibilityImplementation method of Button with ButtonAccImpl class