Mega Code Archive

 
Categories / Flex / Container
 

Absolute layout with Panel

<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">     <mx:Panel x="320" y="127" width="250" height="200" layout="absolute"         title="Testing Events">         <mx:VBox x="79" y="55" height="100%">             <mx:Label id="myLabel" />             <mx:Button label="Test" id="myButton" />         </mx:VBox>     </mx:Panel> </mx:Application>