Me gustaría q después de un tween un movieclip cargara un texto o cualquier otra cosa, pero obvio, necesito saber cuando termina.
El código que uso es este:
Código:
  
Y pues eso quiero saber cómo detectar que ha terminado./// EFECTO TWEEN ///
import fl.transitions.Tween;
import fl.transitions.easing.*;
var toMouseY:Tween;
function easingAnimation():void {
	this.toMouseY = new Tween(bloqueAzul, "scaleY", Elastic.easeOut, 
	                              0, 4, 1, true);
	
}
function easingAnimation2():void {
	this.toMouseY = new Tween(bloqueAzul, "scaleY", Elastic.easeIn, 
	                              4, 0, .5, true);
}
Muchas gracias
 

Este tema le ha gustado a 1 personas