Ciao a tutti, ho un problema non riesco a validare il mio codice html nel punto in cui è inserito uno swf, il codice è questo:
<tr>
<td height="176" align="center" valign="middle" class="buzzsg"> <object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="160" height="160">
<param name="movie" value="buzz/buzz.swf">
<param name="quality" value="high">
<embed src="buzz/buzz.swf" width="160" height="160" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed></object></td>
<td></td>
</tr>
Mi da i seguenti errori:
Line 226, column 25: there is no attribute "SRC"
<embed src="cartella/file.swf" width="160" height="160" quality="high"
You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is often caused by incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Transitional" document type to get the "target" attribute), or by using vendor proprietary extensions such as "marginheight" (this is usually fixed by using CSS to achieve the desired effect instead).
This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.
How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute.
Line 226, column 47: there is no attribute "WIDTH"
Line 226, column 60: there is no attribute "HEIGHT"
Line 226, column 74: there is no attribute "QUALITY"
Line 226, column 93: there is no attribute "PLUGINSPAGE"
Line 226, column 144: there is no attribute "TYPE"
Line 226, column 175: element "EMBED" undefined
Grazie a chiunque vorrà aiutarmi, ciao!![]()