tags:

views:

19

answers:

1

I use the following doctype in a page that has a flash object,

html code

<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="379" height="180">
<param name="movie" value="Flash/header.swf" />
<param name="quality" value="high" />
<embed src="Flash/header.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="379" height="180"></embed>
</object>

When I try to validate the page Im displayed with the following errors,

there is no attribute "src"
there is no attribute "quality"
there is no attribute "pluginspage"
there is no attribute "type" 
there is no attribute "width"  
there is no attribute "height" 
there is no attribute "type" 

Could some one please advice me with some information on how to embed a flash object[.swf] in a page with no validation errors?

A: 

embed is a old element invented by Netscape and never was standardized. Search google for dozens of valid ways to embed flash: http://www.google.de/search?q=embed+flash+valid

RoToRa
@ rotora cheers m8!!
manraj82