Skip to content

Instantly share code, notes, and snippets.

@palaniraja
Created January 30, 2011 08:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save palaniraja/802695 to your computer and use it in GitHub Desktop.
Save palaniraja/802695 to your computer and use it in GitHub Desktop.
Apple script to toggle internet sharing (via airport)
on run {input, parameters}
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 0
tell window "Sharing"
click checkbox 1 of row 11 of table 1 of scroll area 1 of group 1
delay 0
if (exists sheet 1) then
if (exists button "Turn AirPort On" of sheet 1) then
click button "Turn AirPort On" of sheet 1
delay 0
end if
click button "Start" of sheet 1
end if
end tell
end tell
tell application "System Preferences" to quit
end tell
return input
end run
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment