So, if I understand, dimension of app with NO_SCALE is good for you, and in that case you only want that window chrome fits your app borders? Did you try setting window.nativeWindow.bounds = new Rectangle(...) I am not sure for stage.fullScreenWidth having correct values you need.. Have in mind window.width and nativeWindow.width are different thing.
Check how you get OS's window default chrome dimensions: var chromeWidth:int = stage.nativeWindow.width – stage.stageWidth; var chromeHeight:int = stage.nativeWindow.height – stage.stageHeight; Check NativeWindow.bounds <http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/display/NativeWindow.html#bounds> Check Sizing AIR NativeWindow to Stage <https://tedpatrick.com/2009/12/23/sizing-air-nativewindow-to-stage/> -- View this message in context: http://apache-flex-users.2333346.n4.nabble.com/Flex-Mobile-App-To-Desktop-App-tp13344p13355.html Sent from the Apache Flex Users mailing list archive at Nabble.com.
