Line Following
Swishcripted line leading to the left and always following the cursor. SLightly on the experimental Swishscript side of thing, could be useful somewhere.
The Script
OnLoad() {
ref=_root.createEmptyMovieClip("line",1);
ref.lineStyle(0,0xFFFFFF,0);
ref.lineStyle(5,0x000000,100);
}
OnEnterFrame(){
line.lineTo(_root._xmouse,_root._ymouse);
_root._X----;
}
}