вы должны импортировать
import mx.transitions.Tween;
import mx.transitions.easing.*;
и затем используйте команду
new Tween(yourMovieClip, "_alpha", Regular.easeOut, 40, 100, 1, true);
так сказать
// to tween over a period of time:
new Tween(movieclip, "property", easing-type, start-value, stop-value, #seconds, true);
// to tween over a number of frames:
new Tween(movieclip, "property", easing-type, start-value, stop-value, #frames, false);
Вы можете прочитать класс анимации