I am creating a custom cursor in my java application using the following code:
this.setCursor(Toolkit.getDefaultToolkit().createCustomCursor(
Utilities.getImage("images\\mouse_pointer.png", false),
new Point(0, 0),
"cursor"));
"this" refers to a class that extends JFrame. The cursor changes as expected using this code, but whenever I open a new modal dialog the cursor returns to it's default state. I tried changing the cursor of each new dialog, but this only works if I am hovering over the dialog; Once I leave the dialog's area the cursor returns to it's original state again. Does anybody know why this is happening or of a way to change the cursor across an entire application? Any help would be greatly appreciated.
Thanks.
JDialogas well... worked for me – David Kroukamp Nov 25 '12 at 8:05