попробуйте это.
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;
}