Search Tutorials
I Hope you enjoy the RPG tutorials. Now, I'm gonna show you how to create Custom cursors for your Games!Make an MC (movieclip) for your custom cursor. It can be anything you want for your cursor. In this movieclip add a layer and add to the frame:stop(); Add a frame in both layers. In the top layer(the actions layer) add another stop(); in there. In the cursor layer, make what you want the cursor to look like when you click. Go back to the main timeline In the cursor's actions put these:
onClipEvent (enterFrame) {
this._x = _root._xmouse;
this._y = _root._ymouse;
Mouse.hide();
}
onClipEvent (mouseDown) {
gotoAndPlay(2);
}
onClipEvent (mouseUp) {
gotoAndPlay(1);
}
NOW YOU HAVE A CUSTOM CURSOR!!! Contact me at J.j.lynn@verizon.net
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
![]() |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|