LoginSignup
0
0

More than 5 years have passed since last update.

Cocoaの機能を使ってWi-FiのON/OFFを切り替えるAppleScriptハンドラ

Posted at
  • 切り替えに成功するとtrue、失敗するとfalseが返る
switchWiFi.scpt
use framework "CoreWLAN"

--Wi-Fi ON
my switchWiFi(true)

--Wi-Fi OFF
my switchWiFi(false)

on switchWiFi(onOrOff as boolean)
    --require framework: CoreWLAN
    current application's CWInterface's interface()'s setPower:onOrOff |error|:(missing value)
end switchWiFi

更新履歴

  • 2016-02-13: CoreWLANフレームワークを使って作成
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0