Is there a way to ask to enable access for assistive device in a popup windows (NSAlert like) with a button directly in the popup window?
Asked
Active
Viewed 248 times
1 Answers
3
No, users have to open the System Preferences to enable this.
You can provide a button to navigate to the right System Preference page though:
[[NSWorkspace sharedWorkspace] openFile:@"/System/Library/PreferencePanes/UniversalAccessPref.prefPane"];

omz
- 53,243
- 5
- 129
- 141
-
That was my second option. If it's the only possible one, i'll go for it. Thx – Matthieu Riegler May 19 '12 at 20:38