Components Flex


  backgroundColor="#eeeeee">
  
  
    
      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");
        }
      }