Macbook提供了非常簡單易用的Internet共用功能,可以做為一個輕量級的家庭無線路由使用。只要你的mbp能夠上網,那麼你的手機、touch和pad的裝置就都可以通過wifi共用mbp的網路,實現無線上網。
具體設定非常簡單,系統喜好設定->共用->Inernet共用->啟動幾個步驟,但是每次點這麼幾下,還是很麻煩,我們通過Apple Script和QS這個神器可以讓簡單的操作更簡單。
開啟AppleScript編輯器,鍵入如下代碼(供參考):
以下代碼請根據縮排。
tell application “System Preferences”
activate
end tell
tell application “System Events”
tell process “System Preferences”
click menu item “共用” of menu “顯示” of menu bar 1
delay 2
tell window “共用”
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 “開啟 AirPort” of sheet 1) then
click button “開啟 AirPort” of sheet 1
delay 1
end if
click button “啟動” 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
檔案->儲存,儲存為指令檔,例如ws.scpt,然後運行,效果看到了吧。
之後呼出QS,如果你是mac使用者而不知道QS,那麼就用Google百度一下。在QS中通過路徑方式找到ws.scpt,運行之。運行一次之後就可以直接通過鍵盤操作了。呼出QS,鍵入ws,應該就可以找到ws.scpt,然後敲斷行符號鍵,搞定。
好了,這下呼出QS,鍵入ws和斷行符號,就能自動開啟或關閉Internet共用了。