Link to home
Start Free TrialLog in
Avatar of gmoniey
gmoniey

asked on

custom mouse pointer (hand grab one)

Hi,

not really sure if this is the right forum for this post, but here it is anyways.

I am trying to create a custom mouse pointer in java, and I want to use adobe's hand open and hand grab that they use for the acrobat reader, but I cant find this anywhere.

I was wondering if anyone knew where i could find the images for these two mouse pointers. Also, is there any type of copyright issues with thier mouse pointers?

thanks!
ASKER CERTIFIED SOLUTION
Avatar of TimYates
TimYates
Flag of United Kingdom of Great Britain and Northern Ireland image

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 gmoniey
gmoniey

ASKER

Hi,

I know you can use gifs...the problem is my drawing skills are incredibly limited (i.e. i dont have any =)...

so i was wondering if anyone had these gifs avaiable or could point me somewhere that i could find them.

again, i am looking for the 2 mouse cursors that adobe acrobat uses (the hand open, and hand grab)

Thanks!
SOLUTION
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
Mmmm. Grabbing a cursor with screen shot software will probably not work, since most of the time that software manipulates the cursor too.
But I think the icon grabber method should work.
probably better off asking in OS topic, not really a Java question.

If you need some mouse pointers to start with, use those that come with the resources of MSWindows (*.cur)
Otherwise you can use one of the 1000's .png's on any LINUX distribution, convert it into .gif
and there you are. Just by scanning around I found myself 100's of (animated) arrows,
so you really don't have to draw anything yourself.
;JOOP!
java does have a hand mousepointer

java.awt.Cursor;

Cursor hand = new Cursor(Cursor.HAND_CURSOR);