i’ve got 48 movieclips that i want to tween every 300 milliseconds or so.
the instance names on my mc’s are t1_mc, t2_mc, t3_mc, etc. up to t48_mc.
i’ve tried a for loop and a setInterval statement and i know i’m missing something.
one simple function that will give me:
new Tween (t1_mc, “_y”, Strong.easeOut, t1_mc._y+100, t1_mc._y, 1, true);
every 300 milliseconds is all i’m looking for.