Ver Mensaje Individual
  #1 (permalink)  
Antiguo 24/03/2010, 11:11
picaflor_001
 
Fecha de Ingreso: marzo-2010
Mensajes: 4
Antigüedad: 14 años, 1 mes
Puntos: 0
Problemas con FLASH y W3c Validator

Hola buenas, estoy con pagians web en html en ocncreto con una en XHTML, y bueno me gustaria perfeccionar un poco ganandome a los validadores de w3c y CSS que ya los tengo, pero tengo un problema, he insertado en la web que estoy haciendo un calendario en flash con eventos de "coffe web calendar" y el codigo es este:

Código HTML:
 <!-- Calendario con eventos -->
                      <script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','200','height','220','title','calendario','src','calendario/mycalendar','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','bgcolor','#ffcc33','movie','calendario/mycalendar' ); //end AC code
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="200" height="220" title="calendario">
                    <param name="movie" value="calendario/mycalendar.swf" />
                        <param name="quality" value="high" /><param name="BGCOLOR" value="#ffcc33" />
                        <embed src="calendario/mycalendar.swf" width="200" height="220" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" bgcolor="#ffcc33"></embed>
                      </object></noscript>
                   <!-- Fin Calendario con eventos --> 
Bueno pues cuando lo valido en la pagina web de validator w3 me dice unos cuantos codigos que antes no me salian ya que estaba OK, y son los siguientes, os pongo unos pocos ya que son 16 errores.

Código HTML:
# Line 131, Column 36: there is no attribute "src"

                        <embed src="calendario/mycalendar.swf" width="200" heig…

✉

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. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.
# Error Line 131, Column 70: there is no attribute "width"

…src="calendario/mycalendar.swf" width="200" height="200" quality="high" plugin…

✉

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. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.
Haber si me podeis ayudar por favor.