(1)
var popUp:content=content(PopUpManager.createPopUp(this,content,true));
popUp.width = 500;
popUp.height = 300;
popUp.showCloseButton=true;
popUp.width = 500;
popUp.height = 300;
popUp.showCloseButton=true;
PopUpManager.centerPopUp(popUp);
(2)
- var popwin:TitleWindow = new TitleWindow();
- PopUpManager.addPopUp(popwin,this,true);
- PopUpManager.centerPopUp(this);
(3)
<mx:TitleWindow id="titleWindow_popUp" status="单击图片选择聊天表情" height="200" showCloseButton="true" creationComplete="init();">
- private function init():void
- {
- // 可以通过this.x ,this.y 来设置位置
- this.x = Capabilities.screenResolutionX/2-this.width/2;
- this.y = Capabilities.screenResolutionY/2-this.height/2 - 50;
- }