Removing the bottom bar from a window + AIR App

1.3k views Asked by At

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!

1

There are 1 answers

2
alxx On
<mx:WindowedApplication
...
    showStatusBar="false"
...