2011-03-01 56 views

回答

1

转到在Flex Builder项目目录中。比方说,你的应用程序名称是Test

进入测试 - > SRC 在那里,你应该找到一个试验app.xml的

在,你会发现有关宽度,高度,x和的y坐标数据窗口被打开。

变化以下行有:

<!-- Whether the user can resize the window. Optional. Default true. --> 
<resizable>false</resizable> 

<!-- The window's initial width in pixels. Optional. --> 
<width>200</width> 

<!-- The window's initial height in pixels. Optional. --> 
<height>300</height> 

<!-- The window's initial x position. Optional. --> 
<x>800</x> 

<!-- The window's initial y position. Optional. --> 
<y>600</y> 

您可能需要改变X,根据你的屏幕Y值。

如果你只是想要一个弹出窗口,你应该看看adobe air的popupmanmanager类。

相关问题