ti basta un codice semplice tipo questo:
codice:
_root.createEmptyMovieClip("linea", 0);
with (_root.linea) {
	lineStyle(1, 0x000000, 100);
	moveTo(_xmouse, _ymouse);
}
onEnterFrame = function () {
	_root.linea.lineTo(_xmouse, _ymouse);
};