just set a custom cursor on NSButton...
just set a custom cursor on NSButton...
- Subject: just set a custom cursor on NSButton...
- From: Thierry Bucco <email@hidden>
- Date: Fri, 3 Aug 2001 00:26:02 +0200
Hi,
I just want to change the mouse cursor when I move the it over a button.
I use this code :
NSCursor *theCursor = [[NSCursor alloc] initWithImage:[NSImage
imageNamed:@"cursor.tiff"] hotSpot:NSMakePoint(1,1)];
[[mainWindow contentView] addCursorRect:[theButton frame]
cursor:theCursor];
But it doesn't work have you an idea ?
Thanks
Thierry