Mega Code Archive

 
Categories / Flex / Container
 

Surround the first two labels with an opening and closing VBox tag

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