Greeting everyone,
I found some code in the forum that should be telling me if TalkBack is turned on by the user. The Log statement returns True with TalkBack turned off as well as on. The code is from 2012 so maybe it's too much outdated? If that's the case, is there any updated code that will return the TalkBack status?
Thanks.
I found some code in the forum that should be telling me if TalkBack is turned on by the user. The Log statement returns True with TalkBack turned off as well as on. The code is from 2012 so maybe it's too much outdated? If that's the case, is there any updated code that will return the TalkBack status?
Thanks.
TalkBack query from 2012:
Dim r As Reflector
r.Target = r.GetContext
r.Target = r.RunMethod2("getSystemService", "accessibility", "java.lang.String")
Dim accessibility = r.RunMethod("isEnabled"), _
isExploreByTouchEnabled = r.RunMethod("isTouchExplorationEnabled") As Boolean
Log(accessibility)