<?xml version="1.0" encoding="utf-8"?> <mx:TitleWindow xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" width="400" height="356" showCloseButton="true" title="INDIQUE" close="PopUpManager.removePopUp(this)" creationComplete="PopUpManager.centerPopUp(this)"> <mx:Script> <![CDATA[ import mx.managers.PopUpManager; import mx.controls.*; import mx.events.*; ]]> </mx:Script> <mx:VBox x="10" y="10" width="360" id="vbox1"> <mx:HBox width="100%" id="hbox2"> <mx:Label text="Nome" width="100"/> <mx:TextInput width="100%"/> </mx:HBox> <mx:HBox x="10" y="96" width="100%" id="hbox4"> <mx:Label text="Email" width="100" id="label1"/> <mx:TextInput width="100%" id="textinput1"/> </mx:HBox> <mx:HBox x="10" y="126" width="100%"> <mx:Label text="Amigos" width="100"/> </mx:HBox> <mx:HBox x="10" y="156" width="100%"> <mx:TextInput width="100%"/> </mx:HBox> <mx:HBox x="10" y="176" width="100%"> <mx:TextInput width="100%"/> </mx:HBox> <mx:HBox x="10" y="196" width="100%"> <mx:TextInput width="100%"/> </mx:HBox> </mx:VBox> <mx:Button x="305" y="284" label="Enviar" click="PopUpManager.removePopUp(this)" id="button1" color="#000000" labelPlacement="right"/> </mx:TitleWindow>