Crea un cuadrado conviertelo a clip y llamalo
a_mc, ahora metete a ese cuadrado y vuelvelo a convertir a mc y lo llamas
b_mc, entonces tendrás como ruta
regresa a la linea de tiempo principal y escribe en un frame vacio esto:
Cita: var mclListener:Object = new Object();
mclListener.onLoadStart = function(target_mc:MovieClip) {
//
};
mclListener.onLoadComplete = function(target_mc:MovieClip) {
trace("fin")
};
mclListener.onLoadInit = function(target_mc:MovieClip) {
target_mc._x=a_mc._width-target_mc._width
};
var image_mcl:MovieClipLoader = new MovieClipLoader();
image_mcl.addListener(mclListener);
image_mcl.loadClip("http://www.forosdelweb.com/customavatars/avatar107658_2.gif", a_mc.b_mc);
en teoria debe funcionar.
////
puedes usar esto tambien
Cita:
/*derecho-inferior
target_mc._y=a_mc._height-target_mc._height
target_mc._x=a_mc._width-target_mc._width*/
/*izquierdo-inferior
target_mc._y = a_mc._height-target_mc._height;
target_mc._x = 0;*/
/*normal
target_mc._y = 0
target_mc._x = 0;*/