Mega Code Archive

 
Categories / Flex / Container
 

TitleWindow Title, close button, position, border color and border alpha

<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" >          <mx:TitleWindow title="Options" showCloseButton="true" x="80" y="59" borderColor="#999999" borderAlpha="0.85">         <mx:Form x="47" y="64">             <mx:FormItem label="Background Color:">                 <mx:ColorPicker/>             </mx:FormItem>             <mx:FormItem label="Text Color:">                 <mx:ColorPicker/>             </mx:FormItem>             <mx:FormItem label="Horizontal Layout:">                 <mx:CheckBox/>             </mx:FormItem>             <mx:FormItem label="Open Windows:">                 <mx:RadioButton label="A" groupName="sample1"/>                 <mx:RadioButton label="B" selected="true" groupName="sample1"/>                 <mx:RadioButton label="C" groupName="sample1"/>             </mx:FormItem>         </mx:Form>     </mx:TitleWindow>      </mx:Application>