Puede hacer clic en los botones de opción de más de una manera.
Después del bloque tell application "System Preferences"
use un bloque tell application "System Events"
, por ejemplo:
tell application "System Preferences"
set the current pane to pane id "com.apple.preference.dock"
activate
end tell
tell application "System Events"
click radio button 1 of radio group 1 of window 1 of process "System Preferences"
end tell
En este primer uso, el botón de opción 1 está Izquierdo , el botón de opción 2 es Inferior y el botón de opción 3 está a la derecha .
O:
tell application "System Preferences"
set the current pane to pane id "com.apple.preference.dock"
activate
end tell
tell application "System Events"
click radio button "Left" of radio group 1 of window "Dock" of process "System Preferences"
end tell
En este segundo uso, use Izquierda , Parte inferior o Derecha directamente y también puede usar Dock en lugar de ventana 1 . (Lo último que podrías hacer en cualquiera de estos ejemplos).
O:
tell application "System Preferences"
set the current pane to pane id "com.apple.preference.dock"
activate
end tell
tell application "System Events"
click (every radio button whose value of attribute "AXTitle" is "Left") of radio group 1 of window 1 of process "System Preferences"
end tell
En este tercer uso, use Izquierda , Parte inferior o Derecha para el valor de (every radio button whose value of attribute "AXTitle" is "?")
donde ?
es uno de estos valores.
Nota: estos ejemplos se han probado en OS X 10.11.6 y funcionan tal como están ahora editados. Agregué
of radio group 1
entre botón de opción y ventana . Para usar en OS X 10.8.5, elimine of radio group 1
del código .