Every AIR application has by default a bar at the bottom. It is shown in the picture below:
To hide it, you have to add one line for example in application’s applicatonComplete handler:
* Application's applicationComplete handler
*
* @return void
*/
protected function this_APPLICATION_COMPLETE():void {
statusBar.visible = false;
}//function
