Hi,
I have a component that i want to to change the mouse cursor for when
inside the component area, i am using mouseEntered and mouseExited,
when entered i have this line of code;-
this.setCursor(Cursor.getPredefinedCursor(Cursor.HAND_CURSOR));
which works great, but when exiting i have this;-
this.setCursor(Cursor.getDefaultCursor());
which doesnt seem to do a thing, the hand cursor remains. Is there
anything i am missing out?
thanks in advance....
Vova Reznik - 27 Feb 2006 20:50 GMT
> Hi,
>
[quoted text clipped - 12 lines]
>
> thanks in advance....
How you want to see changes if you define cursor for component your
mouse already left?
Here is no needs for any listeners.
Lee - 27 Feb 2006 20:53 GMT
its OK i have sorted it ... thanks