I think it would be useful if you posted your code, reducing it to a minimum size, if possible.
One thing you need to pay attention to is to make sure that the method signature exactly matches the definition. In this case, it should be:
- (void) swipeWithEvent: (NSEvent*) event { NSLog( @"A swipe happened" ); }
Make sure your definition matches this. Since you have rotateWithEvent: it works correctly, this is probably unlikely, but a typo can sometimes fill up.
Another thing you can do is create a sample project that does nothing but respond to napkins by keeping a journal (or something else). This can help determine if there is anything else in your code or view hierarchy that is interfering.
Jon steinmetz
source share