This content has been marked as final.
Show 1 reply
-
1. Re: Enable status bar ONLY on iPhone 5 where there is extra space?
FLAdude Sep 24, 2012 10:12 AM (in response to FLAdude)Update: I finally figured it out myself. I took a shot in the dark and tried the stage.displayState property. It looked like a desktop specific thing but it actually worked on the iPhone.
stage.displayState = StageDisplayState.NORMAL
will show the status bar.
stage.displayState = StageDisplayState.FULL_SCREEN_INTERACTIVE
will hide the status bar.

