Is Direct Access to Keyboard Preferences > Text Area Possible via AppleScript or Other Way?

Hi all

Does any one know via AppleScript, links or other method how to get/launch the System Preferences > Text pane?

That is this:

Much appreciated!

Z

Try

tell application "System Preferences"
	activate
	reveal anchor "Text" of pane "Keyboard"
end tell
2 Likes

Wow @Nige_S this is perfect thx!

Z