OS X Lion反向滚动自动化快捷方式


12

众所周知,(拥有Mac OS X Lion的人)默认情况下,滚动是反转的,使其有点像iPhone。

问题:无法对USB鼠标进行“正常滚动”,而对触控板进行“自然/反转”滚动。该设置(即使在鼠标和触控板设置中都列出了)均适用于两者。

问题:可以给具有Automator或AppleScipting经验的人提供一些有关如何制作可切换倒置设置的快捷方式的提示吗?我需要这个,因为当我在家时,我已经将Mac Book Air插入了键盘,鼠标和显示器,并且我想要一种快速的方法来更改此设置


只是好奇,打开“首选项”不够快吗?

1
我一直在停靠和取消停放Mac笔记本,因此,一个很好的快捷方式来更改它会很好。

4
人们为什么对这篇文章投反对票?我做错了什么吗?

Answers:


3

这应该做到:

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

到目前为止,这是我所拥有的:pastebin.com/L0Tf7NSh它说找不到复选框1

...checkbox of group 1试试看。

“系统事件出错:无法获取进程“系统偏好设置”的组1。索引无效。”

好的,这有效:pastebin.com/JGUvA8U9关于如何关闭窗口的任何想法?
jtnire 2011年

好的:这是我的最终解决方案:pastebin.com/67PH15Ee
jtnire 2011年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.