[FMX]Draw methods

I like to draw a line! I know that with the draw method

[AS]onClipEvent (enterFrame) {
this.lineStyle(2);
this.lineTo(150, 0);
}[/AS]

a line is drawn at runtime from 150 pixels with a stroke of 2 ponts.

How do I include a certain speed in this :h: