Mouse.hide();
var kursor:MovieClip = _root.createEmptyMovieClip("pointer", _root.getNextHighestDepth());
kursor.onEnterFrame = function() {
kursoria_mc._x = _root._xmouse;
kursoria_mc._y = _root._ymouse;
};

Note :

//U have to prepare a movieclip w/ instance name "pointer" that will replace standard flash' cursor into ur own

//this script does not work if u right-clicked the movie/stage. the standard cursor then will appear. Any Suggestion? ;D

0 comments