Creating an accordion navigator : Accordion « Components « Flex
- Flex
- Components
- Accordion
Creating an accordion navigator

<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
backgroundColor="white">
<mx:Accordion width="150" height="150" id="myAccord">
<mx:Canvas label="Section 1" />
<mx:VBox label="Section 2" />
<mx:HBox label="Section 3" />
</mx:Accordion>
</mx:Application>
Related examples in the same category