Forum Moderators: open
I have been trying to embed a Flash movie in a web page using valid XHTML markup and it does not work in Firefox. I have looked into the Satay method, but this seems very very complex. Is there a simpler method (that does not prevent the movie from showing properly in IE)?
Here is my current code:
<object type="application/x-shockwave-flash" width="600" height="450">
<param name="movie" value="test.swf" />
</object>
Thanks for any help on this.
Alasdair
[blog.deconcept.com...]
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"
width="600" height="450">
<param name="movie" value="test.swf" />
<param name="quality" value="high" />
<!--[if!IE]> <-->
<object data="test.swf"
width="600" height="450" type="application/x-shockwave-flash">
<param name="quality" value="high" />
FAIL: (the browser should render some flash content, not this).
</object>
<!--> <![endif]-->
</object>