我想要獲得一個蘋果腳本來設置OS X 10.6中的鼠標跟蹤速度,特別是使用新的Magic Mouse。通過applescript設置鼠標跟蹤速度
我發現以下幾點:
set trackingValue to 5 --Open and activate System Preferences tell application "System Preferences" to activate --Attempt to change settings using System Events tell application "System Events" tell process "System Preferences" try --Open the "Keyboard & Mouse" pane click menu item "Mouse" of menu "View" of menu bar 1 delay 2 set value of slider 1 to trackingValue --end tell on error theError --An error occured display dialog ("Sorry, an error occured while altering Keyboard and Mouse settings:" & return & theError) buttons "OK" default button "OK" end try end tell end tell
但似乎爲10.5待建,因爲我想
兩個問題「滑塊1至trackingValue設定值」時得到一個錯誤。 ..
- 我怎樣才能得到這個10.6 /魔術鼠標組合?
- 我怎麼會去得到slider on the control panel的名稱,或任何其它控制就此而言,在AppleScript的使用?
我不得不做出對變化......窗口「鼠標」,以trackingValue 的滑蓋「跟蹤」的 設定值......但除此之外,你的腳本的伎倆。謝謝 – Jason 2009-11-08 14:35:28
腳本沒有任何修改就爲我工作。很好地完成並很好地解釋! – mikeh 2009-12-10 18:28:33
它也適用於我當我使用:設置窗口「鼠標」的滑塊「跟蹤」的值TrackingValue。一個很好的例子.. Thanx :)一個問題 - 你能告訴我們類似的腳本來設置:右鍵彈出按鈕的動作到輔助按鈕的動作? – Devarshi 2010-08-19 14:16:41