PDA

View Full Version : Embedding Flash works in IE not in Mozilla


DeeBeeEff
04-07-2005, 10:54 PM
Okay, before any of you grouse at me, I looked at all of the posts here regarding this issue and none of them seemed to solve my problem...or I am an idiot!
Anyway, how do I make this code work in Mozilla as well as IE?

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="130" height="130" id="relog">
<param name="movie" value="http://testpages.wheniwas16.com/geeklog/clock/relog.swf">
<param name="quality" value="high">
<param name="bgcolor" value="#FFFFFF">
<param name="wmode" value="transparent">
<param name="menu" value="false">
</object>


Thanks,
Dave

_Aerospace_Eng_
04-07-2005, 11:03 PM
doing it that way you will also need the embed tag to match the parameters in the object, or you can do it this way which is the way to do it while still coding to standards, and its cross browser functional
<object type="application/x-shockwave-flash" data="http://testpages.wheniwas16.com/geeklog/clock/relog.swf" width="130" height="130">
<param name="movie" value="http://testpages.wheniwas16.com/geeklog/clock/relog.swf">
<param name="quality" value="high">
<param name="bgcolor" value="#FFFFFF">
<param name="wmode" value="transparent">
<param name="menu" value="false">
</object>
That method is called the flash satay method, for more info click here (http://www.alistapart.com/articles/flashsatay/)

DeeBeeEff
04-08-2005, 06:08 AM
Thanks. That worked great!

outseeker
02-04-2008, 12:14 PM
Man you're the best! :D