Embedding Flash in a web page without SWFObject

Instead of using SWFObject, you can embed a Flash object inside a web page using the traditional method. However, this method has some disadvantages - viewers using Internet Explorer will be required to click on the Flash control to activate it. Here is the syntax:

<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="520" height="400" id="ammap" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="ammap/ammap.swf?&path=ammap/&data_file=ammap/ammap_data.xml&settings_file=ammap/ammap_settings.xml"/>
<param name="quality" value="high" />
<param name="bgcolor" value="#ffffff"/>
<embed src="ammap/ammap.swf?&path= ammap/&data_file= ammap/ammap_data.xml&settings_file= ammap/ammap_settings.xml" quality="high" bgcolor="#ffffff" width="520" height="400" name="0" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>