How to embed a flash file in a webpage.

in

This is actually two different commands. One is for Mozilla browsers and the other is for everyone else. I forget why, something about the object property not being recognized by Mozilla. Maybe it's the other way around. If you're curious, it's out there.

You'll want to adjust the FILENAME and the width and height properties in two places - inside the object and inside the embed. Enjoy.

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" 
  codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="1000" 
     height="298"> 
     <param name="movie" value="FILENAME.swf"> 
     <param name="quality" value="high"> 
     <embed src="FILENAME.swf" quality="high" 
  pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="1000" 
     height="298"></embed> 
</object>