2012-09-10 2 views
0
tell application "System Events" 
tell application "System Preferences" 
    activate 
    set current pane to pane "com.apple.preference.displays" 
    set theWindows to windows 
    set win2 to item 2 of theWindows 
    tell win2 
     set index to 1 
     set visible to false 
     set visible to true 
    end tell 
    set value of combo box 1 to "90°" 
end tell 
end tell 

Я пытаюсь изменить вращение внешнего экрана через Applescript, но я не узнать, как открыть выпадающее меню. Google, похоже, многое дает мне о комбо-боксе и поп-меню, но под Lion, по крайней мере, все это не работает.Выпадающих в Monitor System Preferences

ответ

0

Это работало для меня 10.8.

tell application "System Preferences" 
    reveal anchor "displaysDisplayTab" of pane "com.apple.preference.displays" 
end tell 
tell application "System Events" to tell process "System Preferences" 
    tell pop up button 1 of tab group 1 of window 1 
     click 
     click menu item 3 of menu 1 
    end tell 
end tell