I want my program to be able to determine when the cursor turns into a hand (when it's over a hyperlink). I use a loop with setcursorpos to perform the mouse movement.

Code:
Do
   SetCursorPos(x, y)
   If {mouse is over hyperlink} Then Click
   Timeout(0.2)
Loop
Anyone know a substitute for {mouse is over hyperlink}?

Thanks

-CD