I have this code to embed a personal player within my webpage:
Works fine in all other browsers but I get the "This text will be replaced by the flash music player." in IE7.
Any ideas why?
Code:
<div id="column2">
<script type="text/javascript" src="swfobject.js"></script>
<div id="flashPlayer">
This text will be replaced by the flash music player.
</div>
<script type="text/javascript">
var so = new SWFObject("player.swf", "music", "190", "70", "7", "#0055bd");
so.addParam("wmode", "transparent");
so.addVariable("newFile", "audio/america/america.xml");
so.write("flashPlayer");
</script>
</div>
Works fine in all other browsers but I get the "This text will be replaced by the flash music player." in IE7.
Any ideas why?