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 finish work
private function handleWorkDone(event:ResultEvent):void
{
PopUpManager.removePopUp(tw);
...
}
--- In [email protected], "carloscarvalhar" <carloscarval...@...>
wrote:
>
> 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
> Carlos
>