システム環境設定のミッション コントロール ペインでチェックボックスを設定しようとしています。これまでのところ、MC を開くことはできますが、チェックボックスをクリックする方法がわかりません。インターネットで見つけたものはすべて試しましたが、うまくいきませんでした...どうすればいいですか?
tell application "System Preferences" activate 現在のペインをペインに設定 "com.apple.preference.expose" end tell
システム環境設定のミッション コントロール ペインでチェックボックスを設定しようとしています。これまでのところ、MC を開くことはできますが、チェックボックスをクリックする方法がわかりません。インターネットで見つけたものはすべて試しましたが、うまくいきませんでした...どうすればいいですか?
tell application "System Preferences" activate 現在のペインをペインに設定 "com.apple.preference.expose" end tell
これは、現在チェックされていない場合にのみ、ペインの最初のチェックボックスをクリックします。
tell application "System Preferences"
set current pane to pane "com.apple.preference.expose"
activate
end tell
tell application "System Events"
tell process "System Preferences"
set firstCheckbox to checkbox 1 of group 2 of window 1
set checked to value of firstCheckbox as boolean
if (not checked) then
click firstCheckbox
end if
end tell
end tell