Remove Adobe Air Status Bar (in Flex Builder) [Update]
This is something so simple but it took me hours to figure it out (actually I do not know why): I wanted to remove the status bar from my Adobe Air application window. I use Flex Builder to develop my Air application.
I wanted to remove the status bar in the bottom of the window because it is useless and it looks bad in fullscreen mode.
As standard MXML element Flex Builder uses the mx:WindowedApplication. You just have to add a simple
showStatusBar="false"
and you get rid of that stupid status bar.
[Update 8. April 2009]
Setting
showStatusBar="false"
just causes the status bar to not being displayed. However, it is still there but not visible.
Thus, I added
windowComplete="removeStatusBar(event);"
in the title tag of WindowedApplication and implemented removeStatusBar(event) as following:
private function removeStatusBar(event:AIREvent):void{
removeChild(statusBar);
}
Related Posts:
- Flex Does Not Find Resource Bundles
- Recognize DisplayObject Transform Matrix Change Event in Flash AS3
- Remove ‘View Source’ from Adobe Air Debug Context Menu in Flash Builder
- Twitter AS3 library TwitterScript Flex Example
- Touchlib’s TUIO Actionscript 3 Classes Enhanced With Fiducial Support (Source Code)






Fantastic! That was what I was looking for! Thank you for providing this Information.
Yes this prevented me from pulling my hair out – thanx
Ah.. !
A bit late to see this one.
Have been meditating on this for a long time..
Thanks !!
Thank you very much for this!
I had NO idea how to remove this, thanks for the help!
Hi All,
I used the same piece of code but getting a problem.
“ArgumentError: Error #2025: The supplied DisplayObject must be a child of the caller” for the line
removeChild(statusBar)
Kindly help me to figure it out.
Waiting for response
In Flash Builder 4.x the solution is much simpler…
just add: showStatusBar=”false”
in declaration (top of page in source view).
hi dummwiam,
actually this has been written in the article above. In my case the status bar has not been shown but has still been there. thus, i needed to REALLY remove it…
Great, i need it, thx, so much
Thank you! Very helpful. Thanks for sharing.
Don