Hi all,
I have a movie with a movieclip instance named dada_mc on he stage, and this code in frame 1:
import mx.transitions.Tween;
import mx.transitions.easing.*;
var xScaleT:Tween = new Tween (dada_mc, "_xscale", Strong.easeOut,100, 200, 3, true);
var yScaleT:Tween = new Tween (dada_mc, "_yscale", Strong.easeOut, 100, 200, 3, true);
The problem is that I have a static text inside the mc, when the Tween plays, the mc and its text scale up trembling.
Could you please give me any advice on how to prevent this?
Thanks,
CH