Mega Code Archive
Categories
/
Flex
/
Components
CheckBox Checked event
import mx.controls.Alert; private function checkSelected():void { if (myCheckBox.selected) { Alert.show("You selected the CheckBox"); } else { Alert.show("You didn't select the CheckBox"); } }