Ver Mensaje Individual
  #15 (permalink)  
Antiguo 28/03/2013, 23:17
JairoLopez
 
Fecha de Ingreso: febrero-2013
Mensajes: 40
Antigüedad: 12 años
Puntos: 3
Respuesta: Previsualizar película

La herramienta de publicación html de mi flash genera este código...

copialo y pegalo en tu .html y revisa si se soluciona porque, la verdad, a mi me aparece de la misma manera en .swf que en el navegador.

intentalo y nos cuentas.

Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" lang="es" xml:lang="es">
  3.     <head>
  4.         <title>proyecto1</title>
  5.         <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6.         <style type="text/css" media="screen">
  7.         html, body { height:100%; background-color: #333333;}
  8.         body { margin:0; padding:0; overflow:hidden; }
  9.         #flashContent { width:100%; height:100%; }
  10.         </style>
  11.     </head>
  12.     <body>
  13.         <div id="flashContent">
  14.             <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="900" height="500" id="proyecto1" align="top">
  15.                 <param name="movie" value="proyecto1.swf" />
  16.                 <param name="quality" value="high" />
  17.                 <param name="bgcolor" value="#333333" />
  18.                 <param name="play" value="true" />
  19.                 <param name="loop" value="true" />
  20.                 <param name="wmode" value="window" />
  21.                 <param name="scale" value="showall" />
  22.                 <param name="menu" value="true" />
  23.                 <param name="devicefont" value="false" />
  24.                 <param name="salign" value="" />
  25.                 <param name="allowScriptAccess" value="sameDomain" />
  26.                 <!--[if !IE]>-->
  27.                 <object type="application/x-shockwave-flash" data="proyecto1.swf" width="900" height="500">
  28.                     <param name="movie" value="proyecto1.swf" />
  29.                     <param name="quality" value="high" />
  30.                     <param name="bgcolor" value="#333333" />
  31.                     <param name="play" value="true" />
  32.                     <param name="loop" value="true" />
  33.                     <param name="wmode" value="window" />
  34.                     <param name="scale" value="showall" />
  35.                     <param name="menu" value="true" />
  36.                     <param name="devicefont" value="false" />
  37.                     <param name="salign" value="" />
  38.                     <param name="allowScriptAccess" value="sameDomain" />
  39.                 <!--<![endif]-->
  40.                     <a href="http://www.adobe.com/go/getflash">
  41.                         <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Obtener Adobe Flash Player" />
  42.                     </a>
  43.                 <!--[if !IE]>-->
  44.                 </object>
  45.                 <!--<![endif]-->
  46.             </object>
  47.         </div>
  48.     </body>
  49. </html>