回答:
私はズームスタイルを切り替えるAppleScriptスクリプトを書きました:
tell application "System Events" to tell process "System Preferences"
activate
tell application "System Preferences"
set the current pane to pane id "com.apple.preference.universalaccess"
reveal anchor "Seeing_Zoom" of pane id "com.apple.preference.universalaccess"
end tell
delay 0.5
tell pop up button "Zoom Style:" of window "Accessibility"
click
if value is equal to "Fullscreen" then
pick menu item "Picture-in-picture" of menu 1
else
pick menu item "Fullscreen" of menu 1
end if
end tell
tell application "System Preferences" to quit
end tell
キーボードショートカットでこのスクリプトを実行するには、Keyboard Maestroまたはその他のスクリプト起動アプリケーションを使用できます。
Macのズーム機能は通常 Ctrl + Scroll
これが有効になっていない場合は、ユーザー補助>にアクセスできます。ズーム>ズームするには、修飾キーと一緒にスクロールジェスチャを使用します。
現在この機能のためのキーボードショートカットはありません。
それが役立つことを願っています!