我有一个使用javascript / HTML从Adobe的一个示例创建的航空应用程序。是否可以更改描述符文件,以便应用程序启动全屏或最大化?
答案 0 :(得分:3)
或者你可以调用maximize();应用程序创建功能完成功能。
答案 1 :(得分:0)
也许这有帮助(从这里:http://www.kerkness.ca/how-to-launch-an-adobe-air-windowedapplication-in-full-screen-mode/)
<?xml version="1.0" encoding="utf-8"?>
<mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" applicationComplete="init()">
<mx:Script>
<![CDATA[
private function init():void
{
systemManager.stage.displayState=flash.display.StageDisplayState.FULL_SCREEN_INTERACTIVE
}
]]>
</mx:Script>
</mx:WindowedApplication>
答案 2 :(得分:0)
试试这个。 onCreationComplete - 调用主应用程序创建完成的这个方法
private function onCreationComplete():void{
var current:Screen;
var scrArray:Array = Screen.screens;
var screens:Array = Screen.getScreensForRectangle(stage.nativeWindow.bounds);
(screens.length > 0) ? current = screens[0] : current = Screen.mainScreen;
this.width = current .bounds.width ;
this.height = current .bounds.height;
this.nativeWindow.x = 0;
this.nativeWindow.y = 0;
}