Page 1 of 1

Set Cursor

Posted: Sat May 17, 2008 5:26 am
by keyless
Why is this not working for an image?

Code: Select all

on mouseEnter
   set cursor to hand
end mouseEnter
Mouse doesn't turn to a hand.

Posted: Sat May 17, 2008 8:20 am
by Mark
Dear Keyless,

It works, but as soon as the handler has finished, the cursor is reset. If you don't want that, you need to lock the cursor.

Best regards,

Mark

Posted: Sat May 17, 2008 10:36 pm
by keyless
Mark wrote:Dear Keyless,

It works, but as soon as the handler has finished, the cursor is reset. If you don't want that, you need to lock the cursor.

Best regards,

Mark
Ok, got it. I'll give that a try.