code in frame 1 layer 1


//customCursor

//demonstrates how to turn any movie clip into 

//a custom cursor



init();



function init(){

  Mouse.hide();

}



star.onEnterFrame = function(){

  //get star’s X and Y values from mouse’s X and Y values

  star._x = _root._xmouse;

  star._y = _root._ymouse;

} // end enterFrame