0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

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

0
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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?