Hi
I'm making a homepage where I use a custum curser, made with the following script:
custCurser1_mc.onEnterFrame = function() {
this._x = this._x-(this._x-_xmouse)/2;
this._y = this._y-(this._y-_ymouse)/2;
};
custCurser2_mc.onEnterFrame = function() {
this._x = this._x-(this._x-_xmouse)/3;
this._y = this._y-(this._y-_ymouse)/3;
};
custCurser3_mc.onEnterFrame = function() {
this._x = this._x-(this._x-_xmouse)/4;
this._y = this._y-(this._y-_ymouse)/4;
.......
I would like to use a normal curser on parts of the site, but when you roll over a specified area, I would like the curser to change to the custum one, mentenied above.
Do you know how thats done?
Cheers, Moo
I'm making a homepage where I use a custum curser, made with the following script:
custCurser1_mc.onEnterFrame = function() {
this._x = this._x-(this._x-_xmouse)/2;
this._y = this._y-(this._y-_ymouse)/2;
};
custCurser2_mc.onEnterFrame = function() {
this._x = this._x-(this._x-_xmouse)/3;
this._y = this._y-(this._y-_ymouse)/3;
};
custCurser3_mc.onEnterFrame = function() {
this._x = this._x-(this._x-_xmouse)/4;
this._y = this._y-(this._y-_ymouse)/4;
.......
I would like to use a normal curser on parts of the site, but when you roll over a specified area, I would like the curser to change to the custum one, mentenied above.
Do you know how thats done?
Cheers, Moo