how can i make the mouse pointer invisible in j3d?

Hi,
i’m new to java3d and java,i want to control my viewplatform by mousemove event(like general game,i need to chang the line of slight with mousemove),i have already done some of these things,but how can i make the mouse pointer invisible?

Could anyone tell me how to solve it? thanks.

Seems like the only way is to set the Cursor on the Canvas3D to a custom cursor that is created with a transparent image.


canvas.setCusor(Toolkit.getDefaultToolkit().createCustomCustor(blankImage,new Point(0,0),"blank"));

Kev