RadioButtonAccImpl
| Kind of class: | class |
|---|---|
| Inherits from: | CheckBoxAccImpl < ButtonAccImpl < SimpleButtonAccImpl < AccImpl < Object |
| Classpath: | mx.accessibility.RadioButtonAccImpl |
| File last modified: | Tuesday, 18 December 2007, 15:44:37 |
This is the accessibility class for RadioButton.
This class inherits from the CheckBoxAccImpl
If accessibility has to be enabled in a RadioButton, the following code should be written in the first frame of the FLA file
import mx.accessibility.RadioButtonAccImpl;
RadioButtonAccImpl.enableAccessibility();
This class inherits from the CheckBoxAccImpl
If accessibility has to be enabled in a RadioButton, the following code should be written in the first frame of the FLA file
import mx.accessibility.RadioButtonAccImpl;
RadioButtonAccImpl.enableAccessibility();
Summary
Constructor
- RadioButtonAccImpl (master:Object)
Class properties
- accessibilityHooked : Boolean
Class properties inherited from CheckBoxAccImpl
Class properties inherited from ButtonAccImpl
Class properties inherited from SimpleButtonAccImpl
Instance properties
Instance properties inherited from CheckBoxAccImpl
Instance properties inherited from ButtonAccImpl
Instance properties inherited from SimpleButtonAccImpl
Class methods
- enableAccessibility
- hookAccessibility : Boolean
- Static Method for swapping the createAccessibilityImplementation method of RadioButton with RadioButtonAccImpl class
Class methods inherited from CheckBoxAccImpl
Class methods inherited from ButtonAccImpl
Class methods inherited from SimpleButtonAccImpl
Instance methods
Instance methods inherited from CheckBoxAccImpl
Instance methods inherited from ButtonAccImpl
Instance methods inherited from SimpleButtonAccImpl
Instance methods inherited from AccImpl
Event handlers
Event handlers inherited from SimpleButtonAccImpl
Constructor
RadioButtonAccImpl
function RadioButtonAccImpl (
master:Object)
Class properties
accessibilityHooked
static accessibilityHooked:Boolean = hookAccessibility()
(read)
Instance properties
master
master:Object
(read)
owner
owner:Object = RadioButton
(read)
ROLE
ROLE:Number = 0x2d
(read)
Class methods
enableAccessibility
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
This method is required for compiler to activate the accessibility classes for a component
See also:
Overrides:
hookAccessibility
static function hookAccessibility (
) : Boolean
Static Method for swapping the createAccessibilityImplementation method of RadioButton with RadioButtonAccImpl class
Overrides:
Instance methods
createAccessibilityImplementation
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
Accessibility enabling code should be already written in the first frame of the FLA before this method is called