Posts

Showing posts with the label cocoa

How do I open the “Share Menu” preferences on OSX?

How do I open the “Share Menu” preferences on OSX? Much like Safari, trying to implement a button that when clicked opens the preferences on the extensions -> share menu page as shown @ https://i.imgur.com/ZWCCQyJ.png I have NSURL *URL = [NSURL URLWithString:@"x-apple.systempreferences:com.apple.preferences.extensions?Share_Menu"]; [[NSWorkspace sharedWorkspace] openURL:URL]; However it seems like that is not working on newer versions, any ideas? 1 Answer 1 You can use Scripting Bridge to do something like this: SBSystemPreferencesApplication *systemPrefs = [SBApplication applicationWithBundleIdentifier:@"com.apple.systempreferences"]; [systemPrefs activate]; SBElementArray *panes = [systemPrefs panes]; SBSystemPreferencesPane *notificationsPane = nil; for (SBSystemPreferencesPane *pane in panes) { if ([[pane id] isEqualToString:@"com.apple.preferences.extensions...