English 中文(简体)
消防局(FLEX)网页前面有消防局/欧洲航天局。
原标题:firefox/IE statusbar are in front of FLEX page

我在FLEX上创建了网页,但与电动器(页面内容)和来自IE/firefox的底层地位线存在问题。 它们彼此之间很容易相互重叠(在前线存在地位障碍,隐藏了该页的内容),是否可读到这些要素的高度(从而改变dding子)。 (我知道,出于安全原因,禁止将他们开除)。

Code:

<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
           xmlns:s="library://ns.adobe.com/flex/spark" 
           xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="800" minHeight="600" 
           xmlns:components="components.*"
           xmlns:men="components.pages.admin_subpage.*"
           backgroundColor="#000000"
           creationComplete="init()"
           applicationComplete="application1_applicationCompleteHandler(event)"
           skinClass="BackgroundColor"
           >
<s:Scroller id="scroll" left="2" right="2" top="2" bottom="2"> 
    <s:VGroup id="tresc"
              textAlign="center" horizontalAlign="center" gap="10" horizontalCenter="0" bottom="0" paddingBottom="10" top="20" width="100%" height="100%"
              gap.schowaneLogowanie="0">
        <s:HGroup width="100%" paddingLeft="20" paddingTop="20" horizontalAlign="center" textAlign="center" verticalAlign="middle" width.schowaneLogowanie="91%" gap.schowaneLogowanie="0" paddingLeft.schowaneLogowanie="0" paddingRight.wysunieteLogowanie="15">
            <s:Group width="100%">
                <components:logo id="logo"  width="100%"  width.schowaneLogowanie="100%"/>
                <s:HGroup width="100%" verticalAlign.schowaneLogowanie="middle" height.schowaneLogowanie="122" gap="0">

                    <mx:Spacer width="83%"/>
                    <s:TextInput height="30" contentBackgroundAlpha="0.3" width="12%" id="searchText" keyDown="hgr_keyDownHandler(event)" text="Search..." borderVisible.schowaneLogowanie="false"/>
                    <s:Button height="32" alpha="0.8" width="5%" click="button1_clickHandler(event)" label="Go"/>
                </s:HGroup>
            </s:Group>
        </s:HGroup>
        <men:menuTest id="menu" width="100%" textAlign="center"/> //Whole content of page is set here
        <components:stopka id="stopka"  bottom="5" left="5" right="5" />
        <!--<components:menu currentState="wysunietaTresc" textAlign="center" width="100%"/>-->
    </s:VGroup>
</s:Scroller> 
</s:Application>

我从例子中删除了大部分 st。 我试图改变申请和推论,把申请推向先导,但这样做会带来帮助。

http://cerber.cs。

问题回答

Did you try using the height of the application as percentage ?? that would put up a scrollbar in the flex application, and also you can see the whole content by scrolling down.

Would you please care to share your code? Also, a few more details would be nice.





相关问题
Disable button tooltip in AS3

I want to disable the tooltip on certain buttons. The tooltip manager seems to be an all or nothing solution. Is it possible to disable the tooltip for just one or two buttons?

Multiple Remote call made simultenously

I was making multiple remote calls and they are done sequentially and when I am getting a result event back it s triggering calls to all the methods with ResultEvent as an argument . I am supposed to ...

Attaching a property to an event in Flex/AS3

I have a parameter that needs to be passed along with an event. After unsuccessful attempts to place it on the type by extending the class, I ve been advised in another SO question to write a custom ...

Clearing RSL in Cache

I have built a flex application which has a "main" project and it is assosciated with a few RSL s which are loaded and cached once i run my "main" application. The problem i am facing is that the ...

What s a good way of deserializing data into mock objects?

I m writing a mock backend service for my flex application. Because I will likely need to add/edit/modify the mock data over time, I d prefer not to generate the data in code like this: var mockData =...

AS3 try/catch out of memory

I m loading a few huge images on my flex/as3 app, but I can t manage to catch the error when the flash player runs out of memory. Here is the what I was thinking might work (I use ???? because i dont ...

热门标签