Ver Mensaje Individual
  #1 (permalink)  
Antiguo 21/03/2012, 19:37
sebastopols
 
Fecha de Ingreso: marzo-2011
Mensajes: 342
Antigüedad: 13 años, 1 mes
Puntos: 97
Pregunta Div sobre .swf en Full screen no funciona!

Hola a todos, en este caso escribo para tratar de resolver el siguiente problema. Tengo un sitio web hecho en "Flash" y encima quiero ponerle un div, de hecho lo he logrado, el problema es cuando el sitio se ve a pantalla completa, el div desaparece, adjunto el código, si alguien puede orientarme al respecto, desde ya muchas gracias!.

HTML :


Cita:
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Sitio web</title>
<link href="css/estilo.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="swfobject.js"></script>
<style type="text/css">
</style>
</head>
<body>

<div id="tres" style="width:200px;height:65px;background-color:red"></div>

<div id="uno">
<embed wmode="transparent" src="MiFlash.swf" width="100%" height="100%" version ="0" quality="high" allowfullscreen= "true"
pluginspage="http://www.macromedia.com/go/getflashplayer"
type="application/x-shockwave-flash"></embed>
</div>
</body>
</html>

CSS :


#uno {
position: absolute;
z-index: 0;
width:100%;
height: 100%;
}

#tres {
position:absolute;
z-index: 100;
margin-top:26px;
margin-left:110px;
}