JavaFX Scene Builder: pointer cursor onMouseOver

Morrandir picture Morrandir · Aug 6, 2013 · Viewed 16.7k times · Source

Is it possible to set the mouse cursor to become a pointer (hand) when hovering a Node width JavaFX Scene Builder? How?

Answer

Alexandre picture Alexandre · Aug 8, 2013

You can add the following Style to the Node in question:

-fx-cursor: hand;

For additional options, check out the JavaFX CSS Documentation