OS XでBluetooth検出可能モード(true/false)をプログラムで設定する方法はありますか?OS XでBluetooth検出可能モードをプログラムで設定する方法
ユーザーに電源をオン/オフするのではなく、
OS XでBluetooth検出可能モード(true/false)をプログラムで設定する方法はありますか?OS XでBluetooth検出可能モードをプログラムで設定する方法
ユーザーに電源をオン/オフするのではなく、
OS XプライベートAPI IOBluetoothPreferenceSetDiscoverableStateを使用できます。
// Declaration of private API
void IOBluetoothPreferenceSetDiscoverableState(int discoverable);
int IOBluetoothPreferenceGetDiscoverableState();
// Usage
// Turn on Discoverability
IOBluetoothPreferenceSetDiscoverableState(1);
// Get current discoverable state
IOBluetoothPreferenceGetDiscoverableState()
また、オン用とBluetoothオフAPIを便利かもしれません:
void IOBluetoothPreferenceSetControllerPowerState(int powered);
int IOBluetoothPreferenceGetControllerPowerState();
のtellアプリケーション "システム環境設定"
set current pane to pane "com.apple.preferences.Bluetooth"
tell application "System Events"
tell process "System Preferences"
set isOnCheckbox to checkbox "On" of window "Bluetooth"
if value of isOnCheckbox is 0 then
click isOnCheckbox
end if
end tell
end tell
quit
エンドはこれが役立つのBluetooth visibility.HopeをON/OFFスイッチう
このリンゴのスクリプトを教えてください。