At 7/19/09 08:22 PM, BabyMaker12 wrote:
oh an thanks gorilla studios for posting that link but i posted it anyway u n00b.
Correction, you "tried" to post it, but were incapable.
Go API. It's done differently for AS2 vs. AS3, so which are you using?
It will ultimately be either:
//AS2
movieclipname.lineStyle(1, 0xFFFFFF, 100);
moveclipname.moveTo(start.x, start.y);
moveclipname.lineTo(_xmouse, _ymouse);
//AS3
moveclipname.graphics.lineStyle(1, 0xFFFFFF, 1);
moveclipname.graphics.moveTo(start.x, start.y);
moveclipname.graphics.lineTo(mouseX, mouseY);
Some slight variations might be necessary to these though...