Inserting flash in XHTML

callumacrae

not alex mac
Community Support
Messages
5,257
Reaction score
97
Points
48
I want to insert flash in my XHTML strict website, I've looked all over the internet but I just can't find a script that works in all browsers. Please can someone provide a script or link? Thanks.
 

Scoochi2

New Member
Messages
185
Reaction score
0
Points
0
http://latrine.dgx.cz/how-to-correctly-insert-a-flash-into-xhtml
HTML:
<!--[if !IE]> -->
<object type="application/x-shockwave-flash"
  data="movie.swf" width="300" height="135">
<!-- <![endif]-->

<!--[if 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="300" height="135">
  <param name="movie" value="movie.swf" />
<!--><!--dgx-->
  <param name="loop" value="true" />
  <param name="menu" value="false" />

  <p>This is <b>alternative</b> content.</p>
</object>
<!-- <![endif]-->
 
Top