AS3 TweenEvent & how to resume/continue to next frame?

[SIZE=3]I just started learning AS3 the other day and NEED HELP!!:sen:. I’m trying to tween two movie clips and when they are finished, make them resume to the next frame. How do I do this or make it work!?!!?!? :stare:.[/SIZE]

[SIZE=3]Here is my current code: [/SIZE]

[COLOR=Blue]import fl.transitions.Tween;
import fl.transitions.easing.*;
import fl.transitions.TweenEvent;

var myTween:Tween = new Tween(doorRightMc, “x”, Bounce.easeOut, 500.7, 1001, 3, true);
var myTween2:Tween = new Tween(doorLeftMc, “x”, Bounce.easeOut, 24.2, -480, 3, true);
stop();

myTween.addEventListener(TweenEvent.MOTION_RESUME, onMotionResumed);
function onMotionResumed(event:TweenEvent):void {
trace(“Tween resumed”);
}[/COLOR]