air - Strange Bar Overlayed on Flex Interface -


when set flex application run in fullscreen_interactive, click on control bar appears along bottom of screen. it's quite obtrusive , has shown on 2 different computers far.

there's lot of solid white underneath , covers @ least 5-10% of bottom of screen, blocks controls also. never made/placed thing, has else come across this?

append:

protected function windowedapplication1_applicationactivatehandler(event:airevent):void         {             stage.displaystate = stagedisplaystate.full_screen_interactive;             stage.addeventlistener(keyboardevent.key_down, stopesc);              //scale resolution size             var thisscreen:screen = screen.mainscreen;             var newscalex:number = thisscreen.visiblebounds.width / 1019 * 0.98;             var newscaley:number = thisscreen.visiblebounds.height / 680 * 0.98;             var newscale:number = math.min(newscalex,newscaley,1.5);             this.scalex = newscale;             this.scaley = newscale;             this.height = this.height * newscale;             this.width = this.width * newscale;             showstatusbar="false"          } 

try setting

showstatusbar="false" 

in windowedapplication.


Comments

Popular posts from this blog

c# - How to set Z index when using WPF DrawingContext? -

razor - Is this a bug in WebMatrix PageData? -

visual c++ - Using relative values in array sorting ( asm ) -