A new twist to this problem.
I created a new domain name and was switching all my pages over and for some reason the flash isn't showing up anymore. I have the .fla files the same, but with the updated address. The new SWO is identical to the one on the original page.
Original:
Code:
<div id="videoPlayer">
<strong>You need to upgrade your Flash Player</strong>
</div>
<script type="text/javascript">
var so = new SWFObject("flash/VideoPlayer.swf", "Demo", "660", "365", "9.0.0", "#323935");
so.addParam("quality", "best");
so.addParam("wmode", "transparent");
so.addParam("menu", "true");
so.write("videoPlayer");
</script>
<br />
Updated:
Code:
<div id="videoPlayer">
<strong>You need to upgrade your Flash Player</strong>
</div>
<script type="text/javascript">
var so = new SWFObject("flash/VideoPlayer.swf", "660", "365", "9.0.0");
so.addParam("quality", "best");
so.addParam("wmode", "transparent");
so.addParam("menu", "true");
so.write("videoPlayer");
</script>
<br />
also, just to test I put it up there in the iFrame again and it worked in there.
Bookmarks