miraclemaker
Programmer
I use the following code to embed flash files within my webpages (generated by Dreamweaver)
The object tag is for IE, and the embed tag is for Netscape. The problem is with the embed tag - it does not validate to html 4.01 standard. Does anyone know a way to get round this?
Thanks a lot.
Code:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="[URL unfurl="true"]http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0"[/URL] width="773" height="860">
<param name="movie" value="flashfile.swf">
<param name="quality" value="high">
<embed src="flashfile.swf" quality="high" pluginspage="[URL unfurl="true"]http://www.macromedia.com/go/getflashplayer"[/URL] type="application/x-shockwave-flash" width="773" height="860">
</embed>
</object>
The object tag is for IE, and the embed tag is for Netscape. The problem is with the embed tag - it does not validate to html 4.01 standard. Does anyone know a way to get round this?
Thanks a lot.