Link to home
Start Free TrialLog in
Avatar of pengch
pengch

asked on

Change Mouse Pointer in Applet

Anyone knows how to change the mouse pointer in a Java Applet using JDK 1.0? (Using 1.1 is easy).
Avatar of evijay
evijay

Frame has a method setCursor in 1.0.2 which you can use to set the cursor for given frame.
              Your applet should create a frame and set its cursor.

              Applet doesnt have any method to set the cursor  in 1.0.2 !!

              Vijay







Avatar of pengch

ASKER

I want to change the mouse pointer winthin the applet area, not in a frame.
ASKER CERTIFIED SOLUTION
Avatar of anguslai
anguslai

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of pengch

ASKER

Thanks, that works!!