Stage.scaleMode = "noscale";
hola chicos
tengo este actionscript
<code>Stage.scaleMode = "noscale";
Stage.align = "C";
//-----------------------
var StageWidth:Number = 550;
var StageHeight:Number = 400;
function escalaFondo()
{
if (Stage.width > Stage.height) {
fondo._width = Stage.width;
fondo._yscale = fondo._xscale;
} else {
fondo._height = Stage.height;
fondo._xscale = fondo._yscale;
}
fondo._x = (StageWidth - fondo._width) / 2;
fondo._y = (StageHeight - fondo._height) / 2;
}
//-----------------------
Stage.addListener(this);
this.onResize = escalaFondo;
escalaFondo();
//-----------------------
stop();</code>
luego tengo un movieclip de un logo que lo quiero meter en alto a la izquierda. y no quiero que se deforme..
como lo puedo hacer?
es importante!!!