Re: How to replay( looping ) a movie clip which animatedby action script?
[q]Originally posted by: dzedward
if you're using the Tween class, listen for onMotionFinish (as2) or
MOTION_FINISH (as3) to start the tween over.[/q]
no, my movie clip was animated by using for loop. What I want to do is no
matter where I put my movie clip, it will contnuously move from left to right.
for( i = 0; i < 200; i ++ )
{
_root.mc._x += 10;
}
|