Scrolling NSStatusBar
Scrolling NSStatusBar
- Subject: Scrolling NSStatusBar
- From: "Mr. Gecko" <email@hidden>
- Date: Wed, 21 May 2008 16:11:45 -0500
How would I scroll a NSStatusBar I came up with a temporary fix but if
there is a better way please tell me.
- (void)timer:(NSTimer *)t {
if (scroll) {
if ([info length]>5 && lasts != [info length]-4) {
[musicMenuItem setTitle: NSLocalizedString([info
substringWithRange:NSMakeRange(lasts, 5)], @"")];
lasts++;
} else {
lasts = 0;
}
}
}
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden