怎么设置TitleWindow的显示位置
1个回答
展开全部
相对父容器居中的方法:
var popwin:TitleWindow = new TitleWindow();
PopUpManager.addPopUp(popwin,this,true);
PopUpManager.centerPopUp(this);
想对屏幕居中,或设置窗口所在位置:
<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;
var popwin:TitleWindow = new TitleWindow();
PopUpManager.addPopUp(popwin,this,true);
PopUpManager.centerPopUp(this);
想对屏幕居中,或设置窗口所在位置:
<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;
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询