Me apresure en decirlo... sucede que SI puedo superponer divs al flash y que tambien pude maquetar seis capas en diferentes partes y funciona en todos los navegadores,quedando asi:
este es el codigo:
Código HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<style type="text/css">
#contenedor{ position: absolute; top:0px; left:0px; z-index:1; width:580px; height:580px; background-color:blue }
#superpuesto1{position: absolute; top:70px; left:146px; z-index:2; width:434px; height:510px; background-color:red; }
#superpuesto2{position: absolute; top:0px;left:0px; z-index:3; width:220px; height:247px; background-color: green}
#superpuesto3{ position: absolute;top:0px;left:0px; z-index:4; width:580px; height:25px; background-color:yellow}
#superpuesto4{position: absolute;top:25px; left:570px; z-index:5; width:10px; height:50px; background-color:blue}
#superpuesto5{position: absolute; top:450px;left:0px; z-index:6; width:150px; height:130px; background-color:purple}
#superpuesto6{position: absolute; top:240px;left:0px; z-index:7; width:15px; height:230px; background-color:whithe}
</style>
</head>
<body>
<div id="contenedor">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="580" height="580" title="slip">
<param name="movie" value="http://www.poodwaddle.com/applets/worldclockes.swf">
<param name="quality" value="high">
<param name="wmode" value="transparent">
<embed src="http://www.poodwaddle.com/applets/worldclockes.swf" width="580" height="580" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent"></embed>
</object>
</div>
<div id="superpuesto1">a</div>
<div id="superpuesto2"></div>
<div id="superpuesto3"></div>
<div id="superpuesto4"></div>
<div id="superpuesto5"></div>
<div id="superpuesto6"></div>
</body>
</html>
Pero sucede que cuando quito el color de fondo de los divs que estan arriba, en ie8 no sucede nada y el flash vuelve a quedar en primer plano, mientras que en los demas si se respeta el espacio, asi queda en ie8:
he provado varios cambios pero nada... podrian ayudarme, de que forma se puede solucionar esto..