• Home
  • About
  • Publications
  • Contact
  • Imprint
  •  

    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);
    }

    8 Responses to “Remove Adobe Air Status Bar (in Flex Builder) [Update]”

    1. Tom E says:

      Fantastic! That was what I was looking for! Thank you for providing this Information.

    2. Dave B says:

      Yes this prevented me from pulling my hair out – thanx

    3. Jase21 says:

      Ah.. !
      A bit late to see this one.
      Have been meditating on this for a long time..

    4. Jase21 says:

      Thanks !!

    5. LeonBlade says:

      Thank you very much for this!
      I had NO idea how to remove this, thanks for the help!

    6. Alex Fisherr says:

      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

    7. DuMmWiaM says:

      In Flash Builder 4.x the solution is much simpler…
      just add: showStatusBar=”false”

      in declaration (top of page in source view).

    8. johannes says:

      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…

    Leave a Reply