Is there an way, ideally backwards compatible to Mac OS X 10.3, to tell if "Voice Over" is activated in System Preferences?

link|improve this question

It bears noting that 10.3 does not have VoiceOver; it was introduced with 10.4 Tiger. – Sören Kuklau Jan 27 '09 at 9:08
Good point Sören, thanks. – diciu Jan 27 '09 at 9:44
feedback

1 Answer

up vote 1 down vote accepted

This appears to be stored in a preferences file for Universal Access. The app identifier is "com.apple.universalaccess" and the key containing the flag for whether VoiceOver is on or off is "voiceOverOnOffKey". You should be able to retrieve this using the CFPreferences API, something looking like:

CFBooleanRef flag = CFPreferencesCopyAppValue(CFSTR("voiceOverOnOffKey"), CFSTR("com.apple.universalaccess"));
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.