Tengo un problema con la visualizacion de mi sitio en IE, para Firefox y Chrome se ve bien. No se ve mi pelicula en flash.
Estes es el codigo que utilizo en el html. Es para q siempre se encuentre centrado y tire scroll a cierto tamaño del navegador, y se vea la pelicula completa a pesar que la pelicula mida 900 x 700 al tener una resolucion mayor se vea la parte que esta fuera de la pelicula.
Por que razon no se visualiza en flash?
Código :
<html>
<head>
<title>
Titulo
</title>
<style type="text/css">
body,html {
font: 11px Arial, sans-serif;
margin: 0px 0px 0px 0px;
background: #fff;
text-align: top;
color: #333;
}
td {
valign: top;
}
body {
background-image: url(fondo.jpg) ;
}
</style>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head>
<body topmargin="0" leftmargin="0" marginheight="0" marginwidth="0">
<table width="100%" height="116%" cellspacing="0" cellpadding="0" border="0">
<tr>
<td><object data="index.swf" type="application/x-shockwave-flash" width="100%" height="100%" align="top" standby="ASD" title="Titulo">
<param name="scale" value="noscale" />
<param name="movie" value="base.swf" />
<param name="quality" value="best" />
<param name="wmode" value="transparent" />
<param name="menu" value="true" />
</object>
</object></td>
<td><img src="" width="0" height="600" alt=""/></td>
</tr>
<tr>
<td><img src="" width="1000" height="0" alt=""/></td><td></td>
</tr>
</table>
</body>
</html>
Desde ya gracias.
