Change mouse cursor over link in htmlviewer

In a browser the mouse cursor changes over a link from the standard pointer to another cursor (HandOpen ?). Can I do this in Xojo, too? Solutions with MBS for macOS are welcome.

I’m creating an html preview for emails with embedded images as links. The links work fine. But I’d like to have the mouse cursor change to that users can see that something can be clicked.

You found the “MouseDidMoveOverElement(elementInformation as Dictionary, modifierFlags as integer) as boolean” event in WebUIDelegateMBS class?

So you can learn what is below mouse.

To set cursor, either use Xojo methods or NSCursorMBS class.

Totally overlooked the event. Thanks, I’ll have a look.