Forked from hboon/toggle-internet-sharing-osx-snow-leopard
Created
November 3, 2012 23:28
-
-
Save bwagner/4009285 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 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 Wi-Fi On" of sheet 1) then | |
click button "Turn Wi-Fi 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