A couple of things I notice:
1) AC_FL_RunContent ( ) - I'm not familiar with this function. Do you have a javascript file containing this function? This is what is being called if you have javascript enabled in your browser ( and i'm sure you do ). If the function doesn't exist, a javascript error should be thrown. Check the bottom left corner of your ie browser for js errors, or check the error console in firefox. Also, Try removing the <cript/noscript stuff all together. Just use this:
Code:
<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="1000" height="221">
<param name="movie" value="images/emazingchikk.swf" />
<param name="quality" value="high" />
<embed src="images/emazingchikk.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="1000" height="221"></embed>
</object>
2) Double check that the file path is correct ( images/emazingchikk.swf ). Maybe try using an absolute path just to be safe ( http://www.yoursite.com/images/emazingchikk.swf )
Let me know if any of this helps.
|