Hi

I have created a timer event,
and I want its function onTimerp3 to call the function
'Rollp3part2' into action, but I dont know how to initiate it:

Any help will be a great help!
matt

function onTimerp3 ( e : TimerEvent ) : void {

Rollp3part2

}

function Rollp3part2 ( e : MouseEvent ) {

myTween = new Tween ( e.target, "x" , Back.easeIn, e.target.x, p3part2RollPoint.x , 1 , true );
myTween = new Tween ( e.target, 'y' , Back.easeOut, e.target.y, p3part2RollPoint.y , 1 , true );

}