让播客 Flash 影片在 MHT 文件中工作
我从 Adobe 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.