AppleScriptからNightShiftのON/OFFを操作したい
AppleScriptからNightShiftのON/OFFを操作したいと思っています。
- 明日までONにするというところのCheckboxの操作の仕方がわからない
- UIの取得の仕方が分からない
ご教授いただければ幸いです、よろしくお願いいたします。
tell application "System Preferences"
activate
reveal pane "com.apple.preference.displays"
end tell
delay 0.5
tell application "System Events"
tell process "System Preferences"
try
click button "Night Shift" of window 1
end try
end tell
end tell
delay 0.5
tell application "System Preferences"
activate
close window 1
end tell