B4J Question hide mouse pointer

Daestrum

Expert
Licensed User
Longtime User
You can hide the mouse pointer whilst it is over your form with
B4X:
Mainform.RootPane.MouseCursor = fx.Cursors.NONE

to reshow it use
B4X:
Mainform.RootPane.MouseCursor = fx.Cursors.DEFAULT
 
Upvote 0
Top