Just registered to see if anybody can help me. I want to write an applescript to turn on “Mirror Displays” in 10.2.6. Mirror Displays can be found in the “Arrangement” tab in the Displays System Preferences pane.
Can I modify this?
tell application “System Preferences” to activate
tell application “System Events”
tell process “System Preferences”
click menu item “Displays” of menu “View” of menu bar 1
delay 4
set value of slider 1 of group 2 of tab group 1 of window “iMac” to 1
end tell
end tell
ignoring application responses
tell application “System Preferences” to quit
end ignoring
TIA!