me llamo emilio y siempre he sido asiduo lector de este foro. gracias
y ahora finalizado el peloteo y la adulacion

tengo este codigo:
Código ActionScript :
//loadMovie("externo.swf", "castellanu"); /* this.createEmptyMovieClip("castellanu",1) this.castellanu._x=0 this.castellanu._y=0 this.castellanu.loadMovie("externo.swf") */ contentEase =9; Stage.scaleMode = "noScale"; //contentHeight = 0; //contentWidth = 0; Stage.align = "Tl"; var myListener:Object = new Object(); myListener.onResize = function() { toDoListerner(); }; Stage.addListener(myListener); castellanu.onEnterFrame = function() { xPos = Math.round(Stage.width/2-400); //yPos = Math.round(Stage.height/2)-(this._height/2); if (xPos != Math.round(this._x)) { mover = (xPos-this._x)/contentEase; this._x += mover; if (xPos == Math.round(this._x)) { this._x = xPos; } } if (this._width<Stage.height) { if (yPos != Math.round(this._y)) { mover = (yPos-this._y)/contentEase; this._y += mover; if (yPos == Math.round(this._y)) { this._y = yPos; } } } };
todo me funciona bien...
tengo un clip de pelicula en el stage llamado "castellanu" y cuando compilo, este se ajusta en el centro (horizontamente) con efecto easing.
el lio se me forma cuando intento cargar de forma externa alguna imagen o swf. es entonces cuando deja de funcionar el easing
he intentado de varias maneras (lo pueden ver comentado en el codigo) la carga externa pensando que variando podria lograrlo, pero nada de nada.
he alcanzado mi limite y no soy un experto
alguien puede ser tan amable de darme alguna pista o indicacion para solucionarlo?
pq cuando cargo algo externo deja de funcionar el efecto?
graciasss!!!!!