porfavor ayuda...
Código ActionScript :
Stage.align = "TL";
Stage.scaleMode = "noScale";
sizeListener = new Object();
sizeListener.onResize = function() {
fondo._x = (Stage.width - fondo._width) / 2;
fondo._y = (Stage.height - fondo._height) / 2;
botones._x = 5;
botones._y = 0;
logo._x = (Stage.width - logo._width)- 5;
logo._y = 5;
cred._x = 5;
cred._y = Stage.height;
icons._x = Stage.width - icons._width;
icons._y = Stage.height - icons._height;
};
Stage.addListener(sizeListener);
stop();
y el código en el html también funciona muy bien
Código HTML :
<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>dliquida</title>
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
-->
</style></head>
<body>
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="100%" height="100%" id="simple" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="simple.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" /><embed src="simple.swf" quality="high" bgcolor="#ffffff" width="100%" height="100%" name="simple" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
</body>
</html> 