I'm using Flash actionscript2.0 and I'm using this code to show a custom cursor.
onEnterFrame = function()
{
Mouse.hide();
myCursor._x = _xmouse;
myCursor._y = _ymouse;
}
But this results in disappearing mouse cursor when viewing right click context menu. Is there a way to show the standard mouse cursor when viewing the context menu?
Thanks.