I have a _mc (called: normalSize) that is 686px x 489px. I want to have a custom cursor (magnifying glass – _mc is called cursor_mc) to appear over normalSize when someone rolls over it. But, when someone is outside normalSize I want the default Flash cursor to appear.
So far I have this for the custom cursor, but I’m hoping someone is kind enough to help me with setting the boundary. This is the code I have:
_root.cursor_mc.swapDepths(1000);
_root.onEnterFrame = function() {
Mouse.hide();
cursor_mc._x = _xmouse;
cursor_mc._y = _ymouse;
}
Thanks in advance,
Christian
Posted 2 months ago











