Hi, 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!