Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Removing the bottom bar from a window + AIR App

Hey there- I need to remove a bottom bar from my FlashBuilder4 AIR App on a MAC. I've set the config.xml file to this:

<systemChrome>none</systemChrome>
<transparent>true</transparent>

While this removes the window bgcolor, top bar and border, I still receive a bottom bar in my app. How do I remove it? Thanks, any help is appreciated!

like image 977
worked Avatar asked Feb 25 '11 04:02

worked


1 Answers

<mx:WindowedApplication
...
    showStatusBar="false"
...
like image 95
alxx Avatar answered Sep 22 '22 08:09

alxx