Thanks! I have tried doing that, but it still doesn't work....all I want is for it to show an image in place of the slideshow if someone doesn't have flash. In safari, it just shows a blank white empty space where the alternate content is supposed to be, and in firefox it shows a link to download the flash plugin. Here is the code that I am using.
Code:
<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','505','height','367','title','slideshow','src','slideshow','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','slideshow' ); //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="505" height="367" title="slideshow" >
<img src="alternateimage.jpg" />
<param name="movie" value="slideshow.swf" />
<param name="quality" value="high" />
</object>
</noscript>
Last edited by GeekGal; 01-07-2009 at 08:26 PM..
|