This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
So I have an applet I'm trying to change the cursor for. Im running mac osx and the following code changes the cursor when my mouse has hovered over the applet but when I click on the applet it changes it to the normal mouse :S HELP!
import java.applet.*;
import java.awt.*;
public class NewClass extends Applet implements Runnable{
Cursor c;
public void init(){
c = new Cursor(Cursor.CROSSHAIR_CURSOR);
this.setCursor(c);
}