Mega Code Archive

 
Categories / Flex / Container
 

Absolute layout controls

<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">     <mx:Canvas width="100%" height="100%">         <mx:Label id="heading" styleName="heading" x="10" y="10" />         <mx:Label x="62" y="42" text="phone" />         <mx:Label x="53" y="94" text="address" />         <mx:Label x="66" y="68" text="email" />         <mx:TextArea x="110" y="93" editable="false" enabled="true" width="160" height="60" id="address" />         <mx:TextInput x="110" y="40" editable="false" id="phone" />         <mx:TextInput x="110" y="66" editable="false" id="email" />     </mx:Canvas> </mx:Application>