Skip to content

Instantly share code, notes, and snippets.

@hboon
Created December 6, 2009 15:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save hboon/250267 to your computer and use it in GitHub Desktop.
Save hboon/250267 to your computer and use it in GitHub Desktop.
-- Adapted from http://www.macosxhints.com/article.php?story=20031018154841400
tell application "System Preferences"
activate
end tell
tell application "System Events"
tell process "System Preferences"
click menu item "Sharing" of menu "View" of menu bar 1
delay 2
tell window "Sharing"
click checkbox 1 of row 11 of table 1 of scroll area 1 of group 1
delay 1
if (exists sheet 1) then
if (exists button "Turn AirPort On" of sheet 1) then
click button "Turn AirPort On" of sheet 1
delay 1
end if
click button "Start" of sheet 1
else
do shell script "/usr/sbin/networksetup -setairportpower en1 off"
delay 1
end if
end tell
end tell
end tell
ignoring application responses
tell application "System Preferences" to quit
end ignoring
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment