Advertisement
Guest User

Untitled

a guest
Jul 30th, 2014
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. Toolkit toolkit = Toolkit.getDefaultToolkit();
  2. Image image = toolkit.getImage("images/diskimage.gif");
  3. Point pointerPos = new Point(1,1);
  4. Cursor c = toolkit.createCustomCursor(image , pointerPos, "cursorname");
  5. myPanel.setCursor (c);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement