I show statusItem at startup like this:
theItem = [[[NSStatusBar systemStatusBar] statusItemWithLength:NSVariableStatusItemLength] retain];
NSString *theString = [textField stringValue];
(textField.stringValue = theString);
[theItem setTitle:theString];
[theItem setHighlightMode:YES];
The text looks very fuzzy. How to clear text appearance?
Thank.
Floor
Here is a screenshot of the digital clock in menu mode at the top and NSStatusItem at the bottom:

source
share