Line for x, y to cursor

How do you use the drawAPIs to make a link go from one point on the stage,to the mouse. i mean so that it updates, the line is constantly following the mouse.

Thanks :slight_smile:

mcToDrawIn.onEnterFrame = function(){
     this.clear();
     this.lineStyle(0,0,100);
     this.moveTo(x,y); // use desired starting location
     this.lineTo(this._xmouse, this._ymouse);
}

_root.createEmptyMovieClip(β€œpen”, 100);
pen.onMouseMove = function() {
clear();
lineStyle(3, 0xFF0000, 100);
moveTo(275, 200);
lineTo(_xmouse, _ymouse);
};

EDIT/ didn`t see sens post

thanks for the replies.