I'm trying to do what I thought was a simple and trivial task: changing the cursor to hand when hovering a button.
The button has the following script:
on mouseEnter
set the lockCursor to true
set the cursor to hand
set the lockCursor to false
end mouseEnter
It doesn't work. The cursor's shape won't change.
revCursors and revMacCursors appear loaded. The "mouseEnter" event is properly fired.
What am I missing?!
setting cursor won't work
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Re: setting cursor won't work
Try this in the script of a button...
be well
Dixie
Code: Select all
on mouseEnter
set cursor to hand
lock cursor
end mouseEnter
on mouseLeave
unlock cursor
end mouseLeave
Dixie
Re: setting cursor won't work
splendid!
Thank you!
Thank you!
