Search code examples
apache-flexdynamictogglebutton

Flex ToggleButton - toggle dynamically?


I have a four ToggleButton buttons that I want to behave as a group, so when one is clicked the others toggle off. I know you can do this with mx:ToggleButtonBar but I want to to use a spark skin-able component (ToggleButton). Is there a way to toggle a ToggleButton on and off programmatically or is there another way I can achieve my goal?


Solution

  • Read more info here.

    I think this is the information you need:

    For MX controls, if the toggle property is set to true, the state of the Button control does not change until the user releases the mouse button over the control. For the Spark ToggleButton, this statement applies to the selected property.
    

    However, it is not clear to be what "on and off" mean in relation to the ToggleButton. I assume you are relating them to the up and down states.