Re: Accessibility Settings

2024-01-11 Thread Keary Suska via Cocoa-dev
I don’t have those settings on my Mac (Monterey) so I can’t check but I wonder if you can simply query existing controls for their font information? HTH, Keary Suska Esoteritech, Inc. "Demystifying technology for your home or business” > On Jan 11, 2024, at 8:50 AM, Alex Zavatone via Cocoa-de

Re: Accessibility Settings

2024-01-11 Thread Alex Zavatone via Cocoa-dev
I’m sure there is an easier way to do this but well, I don’t know what it is. In the System Settings: Accessibility: Display: Text, I set my font size to 13. There is a database is located at /Library/Application Support/com.apple.TCC/TCC.db . To query the database from the command line, use sq

Re: Accessibility Settings

2024-01-11 Thread Alex Zavatone via Cocoa-dev
I had to do something like that on iOS a few years back. Let me see if I have a solution for MacOS. Cheers, Alex Zavatone > On Jan 10, 2024, at 10:48 AM, Tom Doan via Cocoa-dev > wrote: > > I'm trying to figure out how to query the value for the > Accessibility---Display---Text Size for Ma

Accessibility Settings

2024-01-10 Thread Tom Doan via Cocoa-dev
I'm trying to figure out how to query the value for the Accessibility---Display---Text Size for MacOS (Objective-C). I can't for the life of me find any documentation on it, and anything that looks even close appears to be for iOS and Swift. Can anyone point me in the right direction? Best reg