Mega Code Archive

 
Categories / Flex / Container
 

Surround each of the VBox tags with a Panel tag

<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="horizontal">     <mx:Panel title="1st Labels">         <mx:VBox>             <mx:Label text="This is a test" />             <mx:Label text="This is a second test" />         </mx:VBox>     </mx:Panel>     <mx:Panel title="2nd Labels">         <mx:VBox>             <mx:Label text="This is the third test" />             <mx:Label text="This is the fourth test" />         </mx:VBox>     </mx:Panel> </mx:Application>