My own mouse curser

hi; i have made my own mouse curser for flash, it all works fine.
except if you right click on the page the normal windows mouse appears over the top of my flash mouse. and it doesnt go away unless u refresh the page.

i was just wondering if you could stop this?

my script for the mouse is…

onClipEvent (load) {
startDrag("", true);
Mouse.hide();
}

Hi b3nkobe

A quick serach produced this: http://www.kirupaforum.com/forums/showthread.php?t=61673&highlight=mouse+cursor

Maybe it’ll help :slight_smile:

alright ill check it - thanx

its all working now - thanx mate!!

If anyone else is having the same problem heres the script:

onClipEvent (load) {
Mouse.hide();
startDrag("", true);
onMouseDown = function () {
// only detects left click
Mouse.hide();
};
this.onEnterFrame = function() {
//looks for and detects right click
if (Key.isDown(2)) {
Mouse.hide();
}
};
}

glad it helped :slight_smile: