Using the Tweener Class

Hello,

I’m trying to use the tweener class and i need a little help, I have a container movieclip and i would like it to shrink a little bit, rotate 180 degrees and then return to its origional size.

I have the first two parts working but i can’t work out how to get it back to its origional size again.

Can anyone help me?

 
Tweener.addTween(con, {scaleX:.5, scaleY:.5,time:2, transition:"easeOut"});
Tweener.addTween(con, {rotationY:con.rotationY-180, time:2, transition:"easeinOutCirc", delay:.5});
Tweener.addTween(con, {scaleX:1, scaleY:1, time:2, transition:"easeIn"});

Thanks

Gareth Edwards