User Guide

CheckBox component 165
Events inherited from the UIComponent class
The following table lists the events the CheckBox class inherits from the UIComponent class.
Events inherited from the SimpleButton class
The following table lists the event the CheckBox class inherits from the SimpleButton class.
CheckBox.click
Availability
Flash Player 6 (6.0 79.0).
Edition
Flash MX 2004.
Usage
Usage 1:
on(click){
...
}
Usage 2:
listenerObject = new Object();
listenerObject.click = function(eventObject){
...
}
checkBoxInstance.addEventListener("click", listenerObject)
Description
Event; broadcast to all registered listeners when the mouse is clicked (released) over the check box,
or if the check box has focus and the Spacebar is pressed.
UIObject.reveal Broadcast when an object’s state changes from invisible to visible.
UIObject.unload Broadcast when the subobjects are being unloaded.
Event Description
UIComponent.focusIn Broadcast when an object receives focus.
UIComponent.focusOut Broadcast when an object loses focus.
UIComponent.keyDown Broadcast when a key is pressed.
UIComponent.keyUp Broadcast when a key is released.
Event Description
SimpleButton.click Broadcast when a button is clicked.
Event Description