Cocoa button opens a System Preference page
In a OSX Cocoa app, I would like a button that would open the "speech" preference pane. Is that possible? I'm just trying to save them the time to go System Preferences > Speech > Text to Speech The following is a fairly easy (and reliable) way to at least get System Preferences open to the Speech.prefPane: - (IBAction)openSpeechPrefs:(id)sender { [[NSWorkspace sharedWorkspace] openURL: [NSURL fileURLWithPath:@"/System/Library/PreferencePanes/Speech.prefPane"]]; } However, it won't necessarily be switched to the Text to Speech tab, but rather the last tab the user had selected. It is possible