Automator偏好设置

时间:2011-09-08 06:31:30

标签: applescript automator

我正在使用Lion OSX,我想制作一个自动转换服务,用于切换滚动方向首选项。 因为我也使用Wacom平板电脑,滚动方向搞砸了我的平移,所以我想创建通过按键切换的Automator服务。然而,“WatchMeDoIt”需要永远运作,你如何使这项工作(Applecript?或者什么?)

非常感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

on run {} --put whatever is appropriate here
    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" to quit
end run

这应该这样做。 :)