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