changing cursor

LiveCode is the premier environment for creating multi-platform solutions for all major operating systems - Windows, Mac OS X, Linux, the Web, Server environments and Mobile platforms. Brand new to LiveCode? Welcome!

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller

Post Reply
Glenn Boyce
Posts: 137
Joined: Thu Jul 24, 2008 11:22 pm

changing cursor

Post by Glenn Boyce » Thu May 07, 2009 5:43 am

How do I change the cursor when I'm hovering over a selected object?

malte
Posts: 1098
Joined: Thu Feb 23, 2006 8:34 pm
Contact:

Post by malte » Thu May 07, 2009 8:02 am

Hi,
this should do the trick:

on mouseEnter
lock cursor
set the cursor to watch
end mouseEnter

on mouseLeave
unlock cursor
end mouseLEave

Cheers,

Malte

Glenn Boyce
Posts: 137
Joined: Thu Jul 24, 2008 11:22 pm

Post by Glenn Boyce » Thu May 07, 2009 10:14 pm

Thank you. does the trick nicely

Post Reply