Tengo una gran duda, tengo un diseño liquido de mi web pero en resolucion de 800 x 600 se corta el swf casi por la mitad, y no muestra la barra vertical del navegador para poder ver el resto de la pagina... a que se debe eso,
el codigo del html es este:
Código :
<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>Mi WEB</title>
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
background-color: #0091C9;
}
-->
</style>
<script type="text/javascript" src="swfobject_source.js"></script>
</head>
<body>
<div align="center">
<div id="flashcontent">
<strong><a href="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash&promoid=BIOW">You need to upgrade your Flash Player</a></strong>
</div>
<script type="text/javascript">
// <![CDATA[
var so = new SWFObject("miswf.swf", "swf", "100%", "100%", "8", "#0091C9", true);
so.addParam("scale", "noscale");
so.addParam("salign", "lt");
so.write("flashcontent");
// ]]>
</script>
</div>
</body>
</html>
esto en flash
Código :
//------------ ajustar web -----------------------
Stage.align = "TL"; //top left
Stage.scaleMode = "noScale"; // sin escala
stop ();
//------------ centrar -------------------------
contenedor._x = Stage.width/2
contenedor._y = Stage.height-Stage.height+300
sizeListener = new Object();
sizeListener.onResize = function() {
// change movieclip properties when the window is resized.
contenedor._x = Stage.width/2
contenedor._y = Stage.height-Stage.height+300
};
Stage.addListener(sizeListener);
//----------------------------------------------------
y no se porque no aparece la barra vertical del navegador... intente con:
Código :
html{overflow:auto}
y...
Código :
html{overflow:show}
tambien intente con esto
Código :
body{scroll=si}
Ojala me puedan ayudar.
Gracias y disculpen las molestias[/code]
