[flexcoders] Re: Alert Control help

2009-04-08 Thread carloscarvalhar
i think you need more Popup than Alert... you can add childs to your popup, take a look at this example: http://blog.flexexamples.com/2007/08/06/creating-custom-pop-up-windows-with-the-popupmanager-class/ reference: http://livedocs.adobe.com/flex/3/langref/mx/managers/PopUpManager.html bye

[flexcoders] Re: Alert Control help

2009-04-08 Thread lehaianh1986
Thank Carlos I use Title window and have result I expect. Here is my code private var tw:TitleWindow = new TitleWindow(); private function Load():void { tw.title = Wait to update...; mx.managers.PopUpManager.addPopUp(tw,this,true); PopUpManager.centerPopUp(tw); ... } // then call remove when

RE: [flexcoders] Re: Alert Control help

2009-04-08 Thread Peter DeHaan
click=showAlert(); / /mx:Application From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of lehaianh1986 Sent: Wednesday, April 08, 2009 7:38 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Alert Control help Thank Carlos I use Title window and have