i'm trying to find notification/way to check if NSStatusItem from NSStatusBar (System wide bar) was clicked.

Does anybody knows how to achive this ?

Thanks

EDITED 20120111

I meant "any" item from whole status bar.

link|improve this question

feedback

1 Answer

do something like:

statusItem.target = self;
statusItem.action = @selector(mouseDown:);
statusItem.sendActionOn = NSLeftMouseDownMask; // try without this at first - i can't remember what the default it so you probrably don't need it

then:

- (void)mouseDown:(id)sender {
  NSLog(@"click click");
}
link|improve this answer
sorry, i've updated my questions. – Kamil Zieliński Jan 11 at 8:30
feedback

Your Answer

 
or
required, but never shown

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