Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to show balloon message on status bar item on Mac OS X

Apple has NSStatusItem to manage the status bar item. But it does not have API to show a balloon message from the status bar.

I know Java has TrayIcon.displayMessage().

Does anyone know how to implement this balloon message with Xcode C/C++?

like image 464
user377808 Avatar asked Feb 25 '23 12:02

user377808


2 Answers

No, balloon-style messages are not part of the standard OS X UI. Many third-party tools use the Growl framework for similar functionality.

like image 53
Barry Wark Avatar answered Mar 29 '23 19:03

Barry Wark


This might be what your looking for: http://mattgemmell.com/2008/03/04/using-maattachedwindow-with-an-nsstatusitem

like image 32
keegan3d Avatar answered Mar 29 '23 19:03

keegan3d