所有容器之上的 QNXStageWebView

发布于 2024-11-04 05:48:00 字数 939 浏览 0 评论 0原文

我正在使用 Flex Hero 为黑莓剧本开发一个应用程序,并且使用 QNXStageWebView 显示 html 内容。但问题是当我添加此 webview 以将其放置在所有其他显示对象之上时。我无法控制它。我需要只有解决了这个问题,我才能继续我的工作。谁能帮我解决这个问题???

        import mx.core.FlexGlobals;
        import mx.events.FlexEvent;

        import qnx.media.QNXStageWebView;

        public var webview:QNXStageWebView  =   new QNXStageWebView();

        protected function view1_creationCompleteHandler(event:FlexEvent):void
        {
            var rect:Rectangle  =   new Rectangle(0,0,200,400);
            webview.stage           =   stage;
            webview.viewPort        =   rect;
            webview.zOrder          =   1;

        }

    ]]>
</fx:Script>
<fx:Declarations>
    <!-- Place non-visual elements (e.g., services, value objects) here -->
</fx:Declarations>
<s:Button id="buttn" x="0" y="0"/>

当我运行此代码时,我看不到该按钮。我需要将它显示在网络视图之上。

I am developing an application for blackberry playbook using flex hero and html contents are displayed using QNXStageWebView.But the problem is when i add this webview to stage its coming on top of all other display objects.I am not able to control it.I need to solve it then only i can continue my work. can anyone help me to solve this issue???

        import mx.core.FlexGlobals;
        import mx.events.FlexEvent;

        import qnx.media.QNXStageWebView;

        public var webview:QNXStageWebView  =   new QNXStageWebView();

        protected function view1_creationCompleteHandler(event:FlexEvent):void
        {
            var rect:Rectangle  =   new Rectangle(0,0,200,400);
            webview.stage           =   stage;
            webview.viewPort        =   rect;
            webview.zOrder          =   1;

        }

    ]]>
</fx:Script>
<fx:Declarations>
    <!-- Place non-visual elements (e.g., services, value objects) here -->
</fx:Declarations>
<s:Button id="buttn" x="0" y="0"/>

when i run this code am not able to see that button. i need to display it on top of webview.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦言归人 2024-11-11 05:48:00

您是否尝试过删除 zOrder?它就像 html 的 z-order-property 将子元素排列在某些层中。

Have you tried removing the zOrder? It's like the z-order-property of html to arrange children in certain layers.

浮生未歇 2024-11-11 05:48:00

AFAIK,目前它还不能做到这一点,所有 QNXStageWebView 总是放置在其他对象之上,我们最好等待 adobe / RIM 改进实现。

AFAIK, currently it just can't do that, all QNXStageWebView always placed on top of other object, we better wait for adobe / RIM to improve the implementation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文