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
|
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 | ||||
|
feedback
|
|
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. | |||
|
feedback
|
|
Try enabling mouseMoved events on the window containing the view via the NSWindow class's setAcceptsMouseMovedEvents: method | |||
feedback
|
|
i resolved putting this hack in the CCDirectorMac: after: [fullScreenWindow_ makeMainWindow]; [fullScreenWindow_ makeKeyAndOrderFront:self]; set acceptMouseMovedEvents: [fullScreenWindow_ setAcceptsMouseMovedEvents:YES]; | |||
|
feedback
|