I have subclass of NSView which implements mouseMoved.

However when I move my mouse over the view the mouseMoved never gets called. Why?

I am on OS X Lion.

Thanks, Vance

link|improve this question
feedback

3 Answers

up vote 1 down vote accepted

Event with -setAcceptsMouseMovedEvents:, your view will only get -mouseMoved: when it is the first responder. If you want to receive mouse moved events when your view isn't first responder, give NSTrackingArea a look.

link|improve this answer
feedback

Try enabling mouseMoved events on the window containing the view via the NSWindow class's setAcceptsMouseMovedEvents: method

link|improve this answer
I do try to set "[pullDownWindow setAcceptsMouseMovedEvents:YES];" on the NSWindow instance the view is part of but still nothing. Is there something else? – jox Aug 11 '11 at 4:19
feedback

i resolved putting this hack in the CCDirectorMac: after:

[fullScreenWindow_ makeMainWindow]; [fullScreenWindow_ makeKeyAndOrderFront:self];

set acceptMouseMovedEvents:

[fullScreenWindow_ setAcceptsMouseMovedEvents:YES];

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.