Jump to content

Shmi Anderson

Members
  • Posts

    1
  • Joined

  • Last visited

Shmi Anderson's Achievements

Private

Private (2/17)

0

Reputation

  1. I'm using 3.8 and it works brilliantly. The only issue is that the OSX prefpane doesn't store scrolling levels and defaults back to the previous value despite editing the ScrollLevelAtBoot with values ranging from 7 to 10 but they don't keep. Is there a particular range that the prefpane will accept? Also, does anyone know the default key, perhaps something like com.apple.trackpad.scrolling? I can just run a defaults write operation at login to correct this... I hope. #Update: I've created an applescript to run as an application at login using automator... it shows the System Preferences window for a moment but it does do the trick. This is a fix for now. Essentially, this just navigates the System preferences and automates clicks. Half the credit goes to the guy who sat next to me today in class. tell application "System Preferences" to activate tell application "System Events" tell process "System Preferences" try click UI element "Trackpad" of scroll area 1 of window "System Preferences" set value of slider 1 of group 2 of window "Trackpad" to 10 end try click UI element "Show All" of group 1 of group 2 of toolbar 1 of window "Trackpad" click UI element "Mouse" of scroll area 1 of window "System Preferences" try set value of slider 1 of window "Mouse" to 8 end try end tell tell application "System Preferences" to quit end tell
×
×
  • Create New...