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.
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();
}
};
}