Hello all.
Im just wondering why changing the tint color using the setControlTint of the progress bar to NSGraphiteControlTint doesn't has any effect, I keep seeing that aqua colors... I have tried finding answers online but it seems everybody has that problem.. or everybody is doing something wrong.. hehehe.. including me. what am I doing wrong? here is the code that I use to create the progress indicator progressIndicator = [[NSProgressIndicator alloc] initWithFrame:NSMakeRect(10, 5, 280, 8)]; [progressIndicator setMinValue:0.0f]; [progressIndicator setMaxValue:100.0f]; [progressIndicator setDoubleValue:50.0f]; [progressIndicator setIndeterminate:NO]; [progressIndicator setBezeled:YES]; [progressIndicator setControlTint:NSGraphiteControlTint]; [progressIndicator setDisplayedWhenStopped:YES]; [self.view addSubview:progressIndicator]; Thx Gustavo _______________________________________________ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) 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: http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to arch...@mail-archive.com