Hello all, I implemented a flash animation into my site to add some effects, and tell customers why I am the best place to buy. However this flash animation is screwing up on Firefox. It works fine on internet explorer and Google Chrome, but on firefox it keeps asking the customer to upgrade their flash player. Here is the code I used from Dreamweaver: <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="200" height="300" id="FlashID"> <param name="movie" value="http://www.outplaypoker.com/includes/templates/pure_green_free/serviceCards.swf" /> <param name="quality" value="high" /> <param name="wmode" value="opaque" /> <param name="swfversion" value="9.0.0.0" /> <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. --> <!--[if !IE]>--> <object type="application/x-shockwave-flash" data="asda.swf" width="200" height="300"> <!--<![endif]--> <param name="quality" value="high" /> <param name="wmode" value="opaque" /> <param name="expressinstall" value="Scripts/expressInstall.swf" /> <param name="swfversion" value="9.0.0.0" /> <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. --> <div> <h4>Content on this page requires a newer version of Adobe Flash Player.</h4> <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p> </div> <!--[if !IE]>--> </object> <!--<![endif]--> </object> Code (markup):
I have not because I am not to big on coding so I just used Dreamweaver to insert it, then I copied the code from Dreamweaver to my site.
Try with: <object type="application/x-shockwave-flash" data="http://www.outplaypoker.com/includes/templates/pure_green_free/serviceCards.swf" width="200" height="300"> <param name="movie" value="http://www.outplaypoker.com/includes/templates/pure_green_free/serviceCards.swf" /> <param name="quality" value="high" /> </object> Code (markup):