Is there a way to make my app respond to the play/pause button on Mac?
EDIT:
Using the suggested code,I get this console message:
Could not connect the action buttonPressed: to target of class NSApplication
Why would that be?
|
Is there a way to make my app respond to the play/pause button on Mac? EDIT: Using the suggested code,I get this console message:
Why would that be?
| ||||
|
feedback
|
|
I accomplished this in my own application by subclassing NSApplication (and setting the app's principal class to this subclass). It catches seek and play/pause keys and translates them to specific actions in my app delegate. Relevant lines:
| |||||||||||||
feedback
|
|
Here's a great article on the subject: http://www.rogueamoeba.com/utm/2007/09/29/ | |||
|
feedback
|