Hi,
I have two issues on using custom cursor.
These issues only appear on Safari and Firefox on Mac.
I tested with Opera and Chrome, but they are working fine.
1 Hiding the original arrow cursor
When a cursor rollovers to an Invisible button, I want to show custom cursor
and hide mouse. But Safari and Firefox show the custom cursor as well as a black arrow…
- Mouse dissapears only on Safari.
When mouse rollout to the invisible button, custom cursor dissapears but mouse doesn’t appear either. This happens only on Safari.
I’ve been unable to solve this issue for such a long time now.
If anyone could help on this, I will greatly appreciate it!!
Mouse.show();
stop();
newCursor._visible = false;
oneBtn.onRollOver = function()
{
Mouse.hide();
newCursor._visible = true;
startDrag(“newCursor”, true);
updateAfterEvent();
}
oneBtn.onRollOut = function()
{
Mouse.show();
newCursor._visible = false;
updateAfterEvent();
}
var mouseObj = new Object();
mouseObj.onMouseMove = function() {
handMC._x = _xmouse;
handMC._y = _ymouse;
updateAfterEvent();
};
Mouse.addListener(mouseObj);