00:00
00:00
Newgrounds Background Image Theme

Da-Birb just joined the crew!

We need you on the team, too.

Support Newgrounds and get tons of perks for just $2.99!

Create a Free Account and then..

Become a Supporter!

can u help me? 2002-07-24 15:09:15


I would like to know how to make a targeted cursor (like on the "HUTING FOR BIGFOOT" game)If you know how please help me out and tell me.........thanks allot!

Response to can u help me? 2002-07-24 17:16:28


first draw your cursor then make it a movie clip, name it anything you want, then make the instance name:cursordrag,
on the frame that the cursor is in (it should have its own layer) place this code: (note: this is OUTSIDE of the movie clip on the main timeline)
startDrag("cursordrag", true);
Mouse.hide();

and thats it

Response to can u help me? 2002-07-24 23:02:20


or u make the taget cursor thingy, and u put it on the top layer and u put this ON the movie clip..this way u can use the drag for something else :)

onClipEvent (enterFrame) {
Mouse.hide();
this._y = _root._ymouse;
this._x = _root._xmouse;
}