there is a small tutorial of : how make a star cursor . thats a really nice cursor who make style to yours web site or rpgs games
Thanks for watching -- By Ben --
script :
var i:Number = 0;
this.createEmptyMovieClip("canvas_mc",50);
var myListener:Object = new Object ();
Mouse.addListener(myListener);
myListener.onMouseMove = function() {
var t:MovieClip = canvas_mc.attachMovie("star","star"+i,canvas_mc.getNextHighestDepth())
i++;
t._x = _xmouse;
t._y = _ymouse;
t._xscale = t._yscale = (Math.random()*80)+20; }
copy and paste all the script at the end * i show in the vid *
how do you do it so all of the stars are the same size?
PivotArse 2 years ago
wow cool 5/5
lukiconorzzz12 3 years ago