スクリプトを使用してAirplayミラーリングを有効/無効にしたいのですが、Airplayがアクティブ化されたときに実行されるコマンドを見つける方法がわかりません。
それを行う方法やどこで検索するかについてのアイデアはありますか?
ありがとうございました!
これはAppleScriptで行うことができます。まず「EnableAirplay.scpt」を作成し、次のコンテンツを貼り付けます。
tell application "System Preferences"
set current pane to pane "com.Apple.preference.displays"
activate
end tell
tell application "System Events"
tell process "System Preferences"
click pop up button 1 of window 1
click menu item 2 of menu 1 of pop up button 1 of window 1
end tell
end tell
tell application "System Preferences"
quit
end tell
次に、次のコマンドでこのスクリプトを実行できます。
osascript EnableAirPlay.scpt
これにより、AirPlayの有効化が自動化されます。詳細については、次のリファレンスを参照してください。