誰もが知っているように(Mac OS X Lionを持っている人)、デフォルトでは、スクロールが反転してiPhoneに少し似ています。
問題:USBマウスの場合は「通常のスクロール」、トラックパッドの場合は「自然/反転」スクロールを行う方法がありません。この設定は(マウスとトラックパッドの両方の設定にリストされている場合でも)両方に適用されます。
質問:AutomatorまたはAppleSciptingの経験がある人が、反転設定を切り替えることができるショートカットを作成する方法についていくつかのヒントを教えてください。家にいるとき、Mac Book Airをキーボード、マウス、モニターに接続しているので、これが必要です。この設定をすばやく変更したいのですが。
これはそれを行うべきです:
tell application "System Preferences" to set the current pane to "com.Apple.preference.mouse"
tell application "System Events"
tell process "System Preferences"
click radio button "Point & Click" of tab group 1 of window "Mouse"
click the first checkbox
end tell
end tell
最終的な解決策:
tell application "System Preferences"
activate
set current pane to pane "com.Apple.preference.trackpad"
end tell
tell application "System Events"
tell process "System Preferences"
click radio button "Scroll & Zoom" of tab group 1 of window "Trackpad"
click checkbox 1 of tab group 1 of window "Trackpad"
end tell
end tell
tell application "System Preferences"
quit
end tell