Re: Unresponsive mouseMoved method
Re: Unresponsive mouseMoved method
- Subject: Re: Unresponsive mouseMoved method
- From: Robert Clair <email@hidden>
- Date: Thu, 29 Mar 2007 10:24:40 -0400
Try this -
subclass NSWindow for the window with your views and override sendEvent:
- (void)sendEvent:(NSEvent *)theEvent
{
if ( [theEvent type] == NSMouseMoved )
{
//whatever, return afterwards if you don't want
//anything else to get the mouseMoved
}
[super sendEvent: theEvent];
}
...Bob Clair
_______________________________________________
Cocoa-dev mailing list (email@hidden)
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:
This email sent to email@hidden