showStatusBar="false"When we create AIR apps using the Adobe Flash CS4 IDE, there doesn't appear any status bar. But using Flex Builder 3, all the AIR apps will have status bar turned on by default.

Code (with status bar)
<mx:windowedapplication xmlns:mx="http://www.adobe.com/2006/mxml"To remove status bar add the following code in the main Application window.
backgroundgradientalphas="[1.0, 1.0]"
backgroundgradientcolors="[#FFFFFF, #000000]"
height="281" layout="absolute">
</mx:windowedapplication>
showStatusBar="false"The complete code will look like below
<mx:windowedapplication xmlns:mx="http://www.adobe.com/2006/mxml"Screen (after hiding the status bar)
backgroundgradientalphas="[1.0, 1.0]"
backgroundgradientcolors="[#FFFFFF, #000000]"
height="281" layout="absolute"
showstatusbar="false">
</mx:windowedapplication>
