Question

How can you easily toggle the Ink preference pane setting "Write Anywhere"?

Was it helpful?

Solution

With this script you can toggle the Write Anywhere setting on and off, however it opens the System Preferences in the background:

tell application "System Preferences"
    reveal (pane id "com.apple.preference.ink")
end tell
tell application "System Events"
            tell application process "System Preferences"
                click checkbox "Allow me to Ink in any application" of group 1 of tab group 1 of window "Ink"
            end tell
end tell

I use it for toggling WriteAnywhere from the "Radial Menu" of my Wacom tablet.

Licensed under: CC-BY-SA with attribution
Not affiliated with apple.stackexchange
scroll top