On Feb 14, 2009, at 5:22 PM, Shayne Wissler wrote:
Is there a way in cocoa to get the raw key press/release events? Let's say you were making a game that wanted to know when the control or caps lock key was down or up, how would you do that in Cocoa?
For modifier keys, you get an NSFlagsChanged event. For other keys, you get NSKeyDown and NSKeyUp events.
In an NSResponder subclass, the methods -flagsChanged:, -keyDown:, and -keyUp: will be invoked for these events.
Is that what you were looking for? Regards, Ken _______________________________________________ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please 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: http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to arch...@mail-archive.com