Hello ...
I want to gray out the label text accompanying a disabled pop-up button. Disabling the text field has no visual effect; setting the textColor to [NSColor disabledControlTextColor] or [NSColor lightGrayColor] works, but the label text is still much darker than the titles of disabled radio buttons and check boxes nearby. I can concoct a color from RGB components, but I don't know what the "official" values are supposed to be so that the labels match the disabled radio buttons and check boxes.
What's the magic formula?
By the way: I'm disabling elements in an NSBox by stepping through the subviews (of the subview) of the box with an array enumerator, checking whether each element "respondsToSelector:@selector(setEnabled

", and, if so, disabling that element. It's straightforward enough (except for graying out the text fields), just a very few lines, but I'm wondering if I might be missing "the" solution.
Thanks,
DayLateDon