I have a view in a window with a tracking area set up.

- (void)initializeTracking
{
     NSRect rect = [self frame];
     rect.origin.x = 0.0;
     rect.origin.y = 0.0;
_trackingArea = [[NSTrackingArea alloc] initWithRect:rect options:(NSTrackingMouseEnteredAndExited | NSTrackingMouseMoved | NSTrackingActiveWhenFirstResponder | NSTrackingInVisibleRect) owner:self userInfo:nil];
     [self addTrackingArea:_trackingArea];
}

There is also a panel.

1. With the mouse inside the view, a keyboard shortcut is entered to bring up the panel.

2. Move the mouse outside the view, and then close the panel (with keyboard shortcut, window close box, or with the menu, it does not matter).

3. Move the mouse back inside the view and mouse moved tracking has stopped. That is the problem. Mouse moved tracking should be active but it is not.

4. Move the mouse outside the view and back in again and now mouse tracking is active again.

Any clues as to why mouse tracking stops on step 3?

--Richard

_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Reply via email to