Security and remembering what to do

Searching lead me here, but I’m an old user of AppleScript and I forget all the time. I haven’t read the qualifying statements about the forum lately, so is there anywhere we talk about the latest system in terms of macOS and System Settings rather than Mac OS X? Is there a construct that I can include that will always cause the System Settings>Privacy & Security>Accessibility to be launched so I won’t have to remember how to find it? Am I limited to putting the text “System Settings>Privacy & Security>Accessibility” into an error message also triggered when the “Edit or OK” choice is presented? In other words, where can I find the AppleScripting solution for jogging my memory about what to do to enable the required authority for a script that I want to use frequently? Thanks.

Hi llee.

This is the indeed right place for discussing AppleScript and System Settings.

I’m not sure exactly what you need, but System Settings’s “Accessibility” settings can be opened with this:

tell application "System Settings"
	activate
	reveal anchor "Privacy_Accessibility" of pane "Privacy & Security"
end tell

Thank you, Fredrik71

Thank you, Nigel, and also to Fredrik71.