> I have a WMV file that I ran through the flash 8 video converter. I
> then dropped it into Flash 8 and created a swf and tested it inside of
> the flash authoring IDE. Looked fine. Published it and fired up the
> html in my browser and it looked great.
>
> So I FTP the HTML and the SWF up to my web server (this is NOT
> streaming btw). I fire up IE7 and it looks great. I look at it on
> another machine running IE6 and I get bupkiss. Same for Firefox. Both
> browsers have the flash 9 player installed.
>
> The HTML looks like this (yes, I have the AC_Run script up on the
> server too in my scripts folder):
>
> <script src="Scripts/AC_RunActiveContent.js"
> type="text/javascript"></script>
>
> <script type="text/javascript">
> AC_FL_RunContent(
> 'codebase','
http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0','width','746','height','602','id','sp','align','middle','src','sp','quality','high','bgcolor','#ffffff','name','sp','allowscriptaccess','sameDomain','pluginspage','
http://www.macromedia.com/go/getflashplayer','movie','sp'
);
>
> //end AC code
>
> </script>
> <noscript>
> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
> codebase="
http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"
width="746"
>
> height="602" id="sp" align="middle">
> <param name="allowScriptAccess" value="sameDomain" />
> <param name="movie" value="sp.swf" />
> <param name="quality" value="high" />
> <param name="bgcolor" value="#ffffff" />
> <embed src="sp.swf" quality="high" bgcolor="#ffffff" width="746"
> height="602" name="sp" align="middle" allowScriptAccess="sameDomain"
> type="application/x-shockwave-flash"
> pluginspage="
http://www.macromedia.com/go/getflashplayer" />
> </object>
> </noscript>
>
> I know that the SWF and HTML files are loaded on my server. Can anyone
> shed any light on this?
>
> Thanks in advance.