Script para alternar el uso compartido de Internet usando Alfred

0

Probé muchos métodos para alternar el intercambio de Internet con Alfred, ¡pero no funciona! ¡Me esta volviendo loco!

¿Puede alguien ayudarme con un AppleScript que pueda pegar en Alfred y asignar una tecla de acceso rápido para realizar esta función?

ps: No tengo mucho conocimiento con scripts. ¡Solo copiaré y pegaré el script desde aquí si recibo una respuesta de alguien!

    
pregunta manoj chandra 26.10.2016 - 16:20

1 respuesta

1

Puedes probar esto (probado en OSX 10.9.5 pero puede depender de la versión de tu sistema operativo):

tell application "System Preferences"
-- display system preferences window
activate
-- wait to see the window
delay 1.5
-- try again
activate
-- Open sharing tab (or pane)
set current pane to pane "com.apple.preferences.sharing"
-- we want to see it
delay 1.5

tell application "System Events"
    tell process "System Preferences"

        -- click the checkbox to enable internet sharing
        tell window 1 to click checkbox 1 of row 8 of table 1 of scroll area 1 of group 1
    end tell
end tell
-- wait to see the result
delay 1.5
--quit -- we can quit system preferences
end tell
    
respondido por el boissonnfive 27.10.2016 - 14:37

Lea otras preguntas en las etiquetas