On Wed, Oct 14, 2009 at 2:56 PM, David Alter wrote:
> I do need the cursor to be active everywhere on the screen. In other places
> we are using NSTrackingArea and that works great.
«Obligatory confirmation that you are doing this for good (ex:
eyedropper) and not for evil (well of course the use
I do need the cursor to be active everywhere on the screen. In other places
we are using NSTrackingArea and that works great.
On Wed, Oct 14, 2009 at 2:48 PM, Kyle Sluder wrote:
> On Wed, Oct 14, 2009 at 2:42 PM, David Alter
> wrote:
> > I need to set a cursor for the application when it is in
On Wed, Oct 14, 2009 at 2:42 PM, David Alter wrote:
> I need to set a cursor for the application when it is in specific states. I
> have been doing this by creating by cursor and calling set.
Do you need this cursor to be effective anywhere on the screen? If
not, use the NSTrackingArea API on wh
I need to set a cursor for the application when it is in specific states. I
have been doing this by creating by cursor and calling set.
[[NSCursor crosshairCursor] set];
If the application is deactivated. When you activate the application the
cursor needs to be reset. I tried doing this in
NSAppl