2011-03-01 58 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類。

相關問題