Ver Mensaje Individual
  #8 (permalink)  
Antiguo 17/12/2009, 17:20
Avatar de willyfc
willyfc
 
Fecha de Ingreso: octubre-2008
Ubicación: Santa Cruz - Bolivia
Mensajes: 662
Antigüedad: 15 años, 6 meses
Puntos: 40
Respuesta: Como se hace correctamente?

La forma más común de hacerla es utilizando swfobject que utiliza javascript para insertarlo:

Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  4. <title>Documento sin t&iacute;tulo</title>
  5. <style type="text/css">
  6. #cabecera{
  7. width: 970px;
  8. height: 174px;
  9. background-color: #B2C494;
  10. }  
  11. <script type="text/javascript" src="swfobject.js"></script>
  12. </head>
  13.  
  14. <div id="cabecera"></div>
  15. <script type="text/javascript">
  16.     var so = new SWFObject("rutaatuswf.swf","id","970","174","9","#B2C494");
  17.     so.addParam("menu", "false");
  18.     so.addParam("wmode", "transparent");
  19.     so.write("cabecera");
  20. </body>
  21. </html>
__________________
WFC
codigo82