在 Mac 上强制执行 Flash wmode = window

发布于 2024-10-15 00:11:46 字数 795 浏览 2 评论 0原文

如何在 Mac 上强制执行 Flash 的 wmode=window?这种模式应该使Flash驻留在比普通HTML元素更高的层上并具有更好的性能。它在 Windows 上运行良好。在 Mac 上,会出现奇怪的结果。 Mac 上的 Chrome 将允许 HTML 元素仅覆盖 Flash 中的非视频元素。另一方面,Mac 上的 Firefox 将允许 HTML 元素覆盖 Flash 中的任何内容。我不希望允许 任何 HTML 元素覆盖 Mac 上 Flash 中的任何内容

我正在使用 SWFObject 嵌入 Flash。

swfobject.embedSWF(
    'flash/player_20110128.swf',
    'flashPlayer',
    '100%',
    '100%',
    '9',
    'expressInstallSwfUrlTODO.swf',
    {},
    {
        allowfullscreen: true, 
        wmode: 'window'
    },
    {},
    function(status) {
        if (!status.success) {
            alert('Failed to embed Flash player');
        } else {
            alert('embedded');
        }
    }
); 

How do I enforce Flash's wmode=window on Mac? This mode should make Flash reside on a layer higher than normal HTML elements and have better performance. It's working fine on Windows. On Mac, there's strange results. Chrome on Mac will allow HTML elements to cover only non-video elements in Flash. On the other hand, Firefox on Mac will let HTML elements cover anything in Flash. I don't want to allow any HTML elements to cover anything in Flash on Mac.

I'm using SWFObject to embed my Flash.

swfobject.embedSWF(
    'flash/player_20110128.swf',
    'flashPlayer',
    '100%',
    '100%',
    '9',
    'expressInstallSwfUrlTODO.swf',
    {},
    {
        allowfullscreen: true, 
        wmode: 'window'
    },
    {},
    function(status) {
        if (!status.success) {
            alert('Failed to embed Flash player');
        } else {
            alert('embedded');
        }
    }
); 

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

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

发布评论

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

评论(1

一人独醉 2024-10-22 00:11:46

你试过 wmode=direct 吗?

“直接”指示玩家
完全绕过父网络浏览器
用于渲染。您可以将其与
独立玩家的表现
多一点踢。

但它需要 Flash Player 10 及更高版本。

Gave you tried wmode=direct?

"Direct" instructs the player to
totally bypass the parent web browser
for rendering. You might compare it to
standalone players performance with
the little more kick.

It requires flash player 10 and beyond though.

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