I am creating an AIR Desktop App, and it needs to be in FULLSCREEN.
When i use the below given code, the stage goes to fullscreen but it turns Black in color.
I am facing this issue only when i am using stage.displayState = StageDisplayState.FULL_SCREEN;
Wanted to know does Starling supports fullscreen for AIR Desktop apps?
Below is the code what i am trying to use.
stage.scaleMode = "noScale";
stage.align = "TL";
stage.displayState = StageDisplayState.FULL_SCREEN;
_starling = new Starling(Game, stage);
_starling.start();