Javascript 莫乔伊窗口z索引

Javascript 莫乔伊窗口z索引,javascript,activex,mocha.js,Javascript,Activex,Mocha.js,我正在使用MochaUI windows,例如: new MUI.Window({ id: 'PanelId', loadMethod: 'html', contentURL: 'pages/Panel.html', closeAfter: 0, type: 'notification', addClass: 'notification', content: 'Notification Window', width: 350,

我正在使用MochaUI windows,例如:

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窗口部分始终处于“裁剪”状态

有什么想法吗

(黑色区域是视频的一部分!)
我终于解决了这个问题。 我正在将加载类型设置为iFrame而不是html:

new MUI.Window({
        id: 'MyWindow',
        loadMethod: 'iframe',
现在我有闪烁,但这是一个不同的问题