Mega Code Archive

 
Categories / Flex / Container
 

Absolute layout for Application

<?xml version="1.0"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">     <mx:Label x="100" y="200" text="Column index" />     <mx:Label x="100" y="254" text="Row index" />     <mx:Label x="100" y="306" text="Type" />     <mx:TextArea id="clickColumn" x="191" y="199" />     <mx:TextArea id="clickRow" x="191" y="253" />     <mx:TextArea id="eventType" x="191" y="305" /> </mx:Application>