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?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

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:

#import <IOKit/hidsystem/ev_keymap.h>

- (void)sendEvent:(NSEvent *)event
{
    // Catch media key events
    if ([event type] == NSSystemDefined && [event subtype] == 8)
    {
        int keyCode = (([event data1] & 0xFFFF0000) >> 16);
        int keyFlags = ([event data1] & 0x0000FFFF);
        int keyState = (((keyFlags & 0xFF00) >> 8)) == 0xA;

        // Process the media key event and return
        [self mediaKeyEvent:keyCode state:keyState];
        return;
    }

    // Continue on to super
    [super sendEvent:event];
}

- (void)mediaKeyEvent:(int)key state:(BOOL)state
{
    switch (key)
    {
        // Play pressed
        case NX_KEYTYPE_PLAY:
            if (state == NO)
                [(TSAppController *)[self delegate] togglePlayPause:self];
            break;

        // Rewind
        case NX_KEYTYPE_FAST:
            if (state == YES)
                [(TSAppController *)[self delegate] seekForward:self];
            break;

        // Previous
        case NX_KEYTYPE_REWIND:
            if (state == YES)
                [(TSAppController *)[self delegate] seekBack:self];
            break;
    }
}
link|improve this answer
I'm getting this weird console message. Any clue why? Also, I'm streaming music and I just want it to catch the play/pause button. Volume can be done on the regular OS X GUI. – Moshe Oct 7 '10 at 20:29
What weird console message? Also, if you want to catch only play/pause, then only respond to NX_KEYTYPE_PLAY (remove the other cases). – Joshua Nozzi Oct 7 '10 at 20:38
@Joshua Nozzi - see my edit. – Moshe Oct 7 '10 at 20:42
@Joshua Nozzi - Actually, it has to do with something else. Thanks for the code. +1 – Moshe Oct 7 '10 at 20:50
1  
What's the specific issue you're having? I've implemented this in a shipping app that's been out a few years now. – Joshua Nozzi Oct 8 '10 at 18:50
show 4 more comments
feedback

Here's a great article on the subject: http://www.rogueamoeba.com/utm/2007/09/29/

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.