In this tutorial you will make a mouse on Macromedia/Adobe flash.
1) Make an object, convert it to a symbol (as a movie clip).
2) Give it an instance name (AKA: cursor).
3) Go on to frame actions and type:
--------------------------------------------------------------
stop();
cursor.onEnterFrame = function(){
this._x = xmouse
this._y = ymouse
}
--------------------------------------------------------------
And there you have it; a working mouse |