<mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml" creationComplete="reload()" label="loading" >
<mx:Script>
<![CDATA[
import mx.managers.PopUpManager;
import mx.events.ResizeEvent;
private function reload():void{
parentApplication.addEventListener(ResizeEvent.RESIZE,moveReload);
}
private function moveReload(event:ResizeEvent):void{
PopUpManager.centerPopUp(this);
trace("aaa");
}
]]>
</mx:Script>
<mx:Label text="waiting for next stage" fontSize="14" id="lblLoadPersonalSetting" x="116.5" y="37" fontWeight="bold"/>
<mx:SWFLoader id="Titleimage" width="39" height="29" x="116.5" y="12" source="image/loading.swf" />
</mx:Canvas>
以上是弹出窗口的 代码。
父窗口 还是那样些。