I have received an MHT file from Adobe Contribute that contains a flash file for a podcast. The player is supposed to display and then pull the mp3 file, but it seems to be more complex than just a single 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');
Using javascript is necessary for the file to appear, as simply importing it does not work. However, the issue is that when I try to embed this code snippet into the MHT file, it does not display properly - it seems like the MHT file may not be able to read the javascript. Any ideas on how to solve this?
Thank you!