Hi,
In the past I have changed the mouse pointer in Swing and AWT apps with the following bit of code
Toolkit tk = Toolkit.getDefaultToolkit();
Cursor hand = tk.createCustomCursor(tk.getImage("Mouse.gif"), new Point(0, 0), "BlahBlah");
canvas.setCursor(hand);
This doesn’t work with a Xith3D Canvas3D, I’m not getting any error it’s simply ignores my new mouse pointer. The JOGL forum implies this method should work for a GLCanvas http://www.java-gaming.org/cgi-bin/JGNetForums/YaBB.cgi?board=jogl;action=display;num=1085725562;start=2
Any clues on changing the mouse cursor with Xith3D (Canvas3D class), if this can’t be done it’s a bit of a nail in the coffin for my project. turning off the cursor would be a start…
Thanks
Ben