Я пытаюсь создать applescript, позволяющий мне подключаться к устройству bluetooth по его идентификатору Bluetooth.
до сих пор мне удалось получить applescript для включения bluetooth, если он выключен. Вот такой код:
# This is only necessary, if AppleScripts are not yet allowed to change checkboxes
tell application "System Events" to set UI elements enabled to true
# Now change the bluetooth status
tell application "System Preferences"
set current pane to pane id "com.apple.preferences.bluetooth"
tell application "System Events"
tell process "System Preferences"
# Enabled is checkbox number 2
if value of checkbox 2 of window "Bluetooth" is 0 then
click checkbox 2 of window "Bluetooth"
end if
end tell
end tell
quit
end tell
будет ли кто-то знать, если и как можно настроить новое устройство bluetooth, и если было бы возможно подключиться к устройству на основе его имени устройства/ это устройство bluetooth ID?
Я также попытался записать действие в Automator но для опции " настроить новое устройство "Automator просто говорит мне: "нажмите" кнопку".
Спасибо