
I know I'm going to feel stupid on this one, but...
How do I change the mouse cursor when it's over an html link in a field?
Please, go easy on me, I beg you!

Thanks in advance,
~Garrett
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Code: Select all
on mouseMove
get the mouseChunk
if it is not empty and the linkText of it is not empty and the textStyle of it contains "link" then
lock cursor
set the cursor to hand
else
unlock cursor
end if
pass mouseMove
end mouseMove