How to draw line

Hi hi,

Another question from newbie… I am learning AS3 diligently… reading books and online tutorial…

I know how to draw line :


var sp:Sprite = new Sprite;
addChild(sp);
sp.graphics.moveTo(400, 100);
sp.graphics.lineStyle(1, 0xff6600);
sp.graphics.lineTo(400, 150);


… but how to do some animation from point (400, 100) to (400, 150) in one minute time…
I know tween class and also tweener… but just don’t know how to apply…

Don’t laugh at me… please help !!!

Thanks in advance

Florence