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
| » Level Basic |
|
Added: 2005-09-28 Rating: 7 Votes: 6 |
| » Author |
| Not much to say except that i LOVE FlashMX |
| » Download |
| Download the files used in this tutorial. |
| Download (0 kb) |
| » Forums |
| More help? Search our boards for quick answers! |
-
You must have javascript enabled in order to post comments.


Comments
There are no comments yet. Be the first to comment!