//Create the NSStatusBar and set its length
statusItem = [[[NSStatusBar systemStatusBar] statusItemWithLength:NSSquareStatusItemLength] retain];
[statusItem setHighlightMode:YES];
[statusItem setTitle:@"myTitle"];
[statusItem setToolTip:@"myToolTip"];
[statusItem setMenu:statusMenu];
[statusItem setEnabled:YES];
How to change color of "myTitle" f.e. to blue? Some applications like PeerGuardian changes its status bar item title to red when its lists are disabled, so I guess this is somehow possible.
Thank you!