J'ai essayé de créer un script pour que lorsque je l'exécute, il supprime le réseau Wifi de ma liste mémorisée. C'est presque fini mais je suis bloqué sur un petit bout. Quelqu'un peut-il m'aider ? Voici mon code jusqu'à présent :
tell application "System Preferences"
activate
reveal pane "Network"
delay 1
tell application "System Events"
tell process "System Preferences"
click button "Advanced…" of window "Network"
delay 1
click radio button "Wi-Fi" of tab group 1 of sheet 1 of window "Network"
delay 0.5
tell application "System Events" to keystroke "Cole"
delay 0.2
end tell
end tell
end tell