답변:
그래 넌 할수있어! 단계는 다음과 같습니다.
다음 코드가 포함 된 단일 AppleScript 실행 조치로 Automator를 열고 Automator 서비스를 작성하십시오.
하이 시에라 이상 :
tell application "System Events" to tell process "Notification Center"
if checkbox "Mute" of window 1 exists then
click checkbox "Mute" of window 1
end if
end tell
시에라 및 이전 :
tell application "System Events"
if checkbox "Mute" of window 1 of application process "FaceTime" exists then
click checkbox "Mute" of window 1 of application process "FaceTime"
end if
end tell
그게 다야! 이제 어디에서나 액세스 할 수있는 선택한 바로 가기와 연결된 서비스를 설정해야합니다.
tell application "System Events" to tell process "Notification Center" to click checkbox "Mute" of first item of windows
Ctrl+Alt+M