Is it possible to set the mouse cursor to become a pointer (hand) when hovering a Node width JavaFX Scene Builder? How?
17
votes
3 Answers
39
votes
You can add the following Style to the Node in question:
-fx-cursor: hand;
For additional options, check out the JavaFX CSS Documentation
1
votes
0
votes
In the latest Version of Gluon Scene Builder (v11+), this feature is available under the Properties > Cursor with a few other options as well.
The good thing about this feature is that the cursor is updated while you view the options, i.e how will setting that property look like as shown in the below GIF.
