让播客 Flash 影片在 MHT 文件中工作

发布于 2024-07-30 07:10:23 字数 538 浏览 4 评论 0原文

我从 Adob​​e Contribute 获得了一个 MHT 文件。 我正在尝试让 Flash 文件在 MHT 文档中工作。 这是一个播客,因此它显示播放器然后提取 mp3 文件,而不是一个文件。

<script type="text/javascript" src="swfobject.js"></script>    
var so = new SWFObject("mp3player.swf", "mp3player1", "225", "175", "7", "#CCCCCC");
so.addVariable("file", escape("2006-11-13.mp3"));
so.useExpressInstall('expressinstall.swf');

所以我不能只导入文件,它与 javascript 一起工作以使其显示出来。 我怎样才能让它在 MHT 文件中工作? 该代码片段在常规 HTML 文件中工作,但当我将其放入 MHT 文件中时,它只是显示为空白。 也许MHT不读取js?

谢谢!

I've got an MHT file from Adobe Contribute. I'm trying to get a flash file working in the MHT doc. It's a podcast so it shows the player then pulls the mp3 file, its not one file.

<script type="text/javascript" src="swfobject.js"></script>    
var so = new SWFObject("mp3player.swf", "mp3player1", "225", "175", "7", "#CCCCCC");
so.addVariable("file", escape("2006-11-13.mp3"));
so.useExpressInstall('expressinstall.swf');

So I can't just import the file, it works with javascript to make it show up. How can I get this to work in the MHT file? The code snippet works in a regular HTML file but when I put it in the MHT file, it just comes up blank. Maybe the MHT doesn't read the js?

Thanks!

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

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

发布评论

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

评论(1

若言繁花未落 2024-08-06 07:10:24

Flash 和 javascript 可以嵌入到 MHT 文件中,因为 MHT 是一种容器格式,如 zip。

尝试使用“mp3player.swf”和“2006-11-13.mp3”的完整网址。 相对 url 使用 Content-Location 标头或 Base html 标记进行解析。 Adobe Contribute 可能已更改其中之一以指向其自身。

您可以在文本编辑器中打开并编辑 MHT 文件。

Flash and javascript can be embedded into MHT files because MHT is a container format, like zip.

Try using full urls for "mp3player.swf" and "2006-11-13.mp3". Relative urls are resolved using the Content-Location header or the Base html tag. Adobe Contribute may have altered either one to point to itself.

You can open and edit a MHT file in a text editor.

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