0

我正在使用 MochaUI 窗口,例如:

new MUI.Window({
    id: 'PanelId',
    loadMethod: 'html',
    contentURL: 'pages/Panel.html',
    closeAfter: 0,
    type: 'notification',
    addClass: 'notification',
    content: 'Notification Window',
    width: 350,
    height: 40,
    y: 150,
    x: 100,
    padding: { top: 10, right: 12, bottom: 10, left: 12 },
    shadowBlur: 5
});

我的问题是我试图打开一个控件上方的窗口,该控件运行一个呈现视频的 ActiveX。我无法获得视频顶部的窗口。该窗口高于所有其他控件(其中一个包含 ActiveX),但位于视频顶部的 MochaUI 窗口部分始终被“裁剪”。

有任何想法吗?

(黑色区域是视频的一部分!) 在此处输入图像描述

4

1 回答 1

0

我终于能够解决这个问题。我将加载类型设置为 iFrame 而不是 html:

new MUI.Window({
        id: 'MyWindow',
        loadMethod: 'iframe',

现在我有闪烁,但这是一个不同的问题。

于 2013-11-13T04:53:59.960 回答