我是新来的。我需要关于applescript的帮助。
目前我正在使用 USB 调制解调器连接到互联网,这是我的日常工作,所以我可以工作。但是我想让它在我将 USB 调制解调器插入我的 MBP 时自动运行,并运行脚本以使用已设置的配置连接互联网。
这是我用来连接到 Internet 的脚本。
tell application "System Events"
tell current location of network preferences
set modem to service "Flexi EVDO"
set isConnected to connected of current configuration of modem
if isConnected then
disconnect modem
else
connect modem
end if
end tell
end tell
我使用 automator 运行此脚本并将其另存为 App。
我想要实现的是,如果我可以在插入 USB 调制解调器时直接运行这个脚本。我一直在检测调制解调器脚本。我对此一无所知。
谁能帮我?提前致谢。真的很感谢每一条评论。对不起,我的英语不好。
谢谢!再次。:)