Prueba con esto:
Estas cambiando el tamaño de movieclip solo en el evento de Resize ;)
Código actionscript:
Ver originalimport ImgLoop;
var fondoLoop:ImgLoop = new ImgLoop(this);
fondoLoop.push("imagen/principal/1.jpg");
fondoLoop.push("imagen/principal/2.jpg");
fondoLoop.push("imagen/principal/3.jpg");
fondoLoop.push("imagen/principal/4.jpg");
fondoLoop.setPosicion(0,0);
fondoLoop.setTiempo(4000);//3 segundo
fondoLoop.start();
import mx.transitions.Tween;
import mx.transitions.easing.*
mov_tw=function(clip,prop,fin){
new Tween(clip,prop, Strong.easeOut,clip[prop],fin, 25, false);
}
_root.fondo_mc.contenedor1._width = Stage.width;
_root.fondo_mc.contenedor1._height = Stage.width*0.75;
Stage.align = "TL";
Stage.scaleMode = "noScale";
var miListener:Object = new Object();
miListener.onResize = function() {
_root.fondo_mc.contenedor1._width = Stage.width;
_root.fondo_mc.contenedor1._height = Stage.width*0.75;
};
Stage.addListener(miListener);
miListener.onResize();