Вот что у меня работает:
Toolkit toolkit = Toolkit.getDefaultToolkit();
// get the smallest valid cursor size
Dimension dim = toolkit.getBestCursorSize(1, 1);
// create a new image of that size with an alpha channel
BufferedImage cursorImg = new BufferedImage(dim.width, dim.height, BufferedImage.TYPE_INT_ARGB);
// get a Graphics2D object to draw to the image
Graphics2D g2d = cursorImg.createGraphics();
// set the background 'color' with 0 alpha and clear the image
g2d.setBackground(new Color(0.0f, 0.0f, 0.0f, 0.0f));
g2d.clearRect(0, 0, dim.width, dim.height);
// dispose the Graphics2D object
g2d.dispose();
// now create your cursor using that transparent image
hiddenCursor = toolkit.createCustomCursor(cursorImg, new Point(0,0), "hiddenCursor");
Конечно, я не тестировал его на Mac (пока), только на Windows. Но когда я использовал обычные методы, я получал курсор в виде черного ящика, поэтому я использовал код выше для создания прозрачного ящика и вместо него установил его в качестве курсора. Конечно, вы должны использовать метод setCursor для объекта AWT (например, Frame вашего приложения), чтобы установить этот hiddenCursor. Вот мой метод hideMouse ('fr' - это мой кадр):
public void hideMouse(boolean hide) {
if(hide) {
fr.setCursor(hiddenCursor);
} else {
fr.setCursor(Cursor.getDefaultCursor());
}
}