Estoy intentando escribir un AppleScript para conectarme a un servicio VPN. Una vez conectado a la VPN, quiero mostrar el icono de la VPN en el área de estado de la barra de menús.
He llegado tan lejos como
- conectarse a VPN
- mostrando la sección de Red de Preferencias del Sistema
pero no puedo seleccionar el servicio. ¿Cómo hago eso?
tell application "System Preferences"
activate
set current pane to pane "com.apple.preference.network"
tell application "System Events" to tell process "System Preferences" to tell window "Network"
-- code to select the VPN Service "XYZ" and click the "Show VPN Status in menu"
end tell
end tell