Hi all! This is my first post:
I used dreamweaver to insert a swf file into an HTML page. That page and the embedded swf file works fine locally on my computer.
After the HTML page and the swf file have been uploaded to my web server, the swf no longer loads on the HTML page. Both files are in the same folder, just like they were locally. Any ideas why?
<body>
<div align="center">
<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','1024','height','700','title','','src','EpicImageFlash','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','testfile' ); //end AC code
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="1024" height="700">
<param name="movie" value="testfile.swf" />
<param name="quality" value="high" />
<embed src="testfile.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="1024" height="700"></embed>
</object></noscript>
</div>
</body>