Yes, there are a lot of other tutorials on the web that show you examples of how to embed flash on a web page, but ….. it’s a lot harder to find one that shows you how to do it and still maintain W3C standards compliance.
The easy way to put flash on a page is to use an <embed>tag, which works. It’s widely supported by modern browsers, but it is not a part of the HTML 4 or xHTML 1 specifications. If your desire is to code your html pages to W3C standards, then the <embed> tag is not an option.
Here’s an example that shows a standards compliant implementation of flash that works in IE, Firefox, and Opera:
<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="111" height="39">
<param name="movie" value="/three_coral_button.swf?mp3file=/04 Over You NEW.SWF"/>
<param name="quality" value="high"/>
<param name="bgcolor" value="#fffffff"/>
<!--[if !IE]><-->
<object data="/three_coral_button.swf?mp3file=/04 Over You NEW.SWF"
width="111" height="39" type="application/x-shockwave-flash">
<param name="quality" value="high"/>
<param name="bgcolor" value="#ffffff"/>
<param name="pluginurl" value="http://www.macromedia.com/go/getflashplayer"/>
Falling Forward
</object>
<!--><![endif]-->
</object>