Flex界面上叠加了奇怪的条形图

时间:2022-10-20 05:24:42

When I set my Flex application to run in FullScreen_Interactive, as soon as I click on a control this bar appears along the bottom of the screen. It's quite obtrusive and has shown up on two different computers so far.

当我将Flex应用程序设置为在FullScreen_Interactive中运行时,只要单击控件,此栏就会出现在屏幕底部。它非常突兀,到目前为止已出现在两台不同的计算机上。

There's a lot of solid white underneath it and it covers at least 5-10% of the bottom of the screen, it blocks the controls also. I obviously never made/placed this thing, has anyone else come across this?

它下面有很多纯白色,它覆盖了屏幕底部的至少5-10%,它也阻挡了控件。我显然从来没有制作/放置这个东西,还有其他人遇到过这个吗?

APPEND:

附加:

protected function windowedapplication1_applicationActivateHandler(event:AIREvent):void
        {
            stage.displayState = StageDisplayState.FULL_SCREEN_INTERACTIVE;
            stage.addEventListener(KeyboardEvent.KEY_DOWN, stopesc);

            //Scale to 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"

        }

1 个解决方案

#1


1  

Try setting

尝试设置

showStatusBar="false"

in the WindowedApplication.

在WindowedApplication中。

#1


1  

Try setting

尝试设置

showStatusBar="false"

in the WindowedApplication.

在WindowedApplication中。