Cursor on PPC
I'm trying to display the busy cursor while my java application is running.
The following code displays an hourglass on the desktop but nothing appears when run on the PPC.
try {
frame.setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
do something
} finally {
frame.setCursor(Cursor.getDefaultCursor());
}
Does anybody know why and how I can display the cursor?
Thanks in advance.

