Sto cercando di creare uno script di Apple per consentirmi di collegarmi a un dispositivo Bluetooth tramite il suo ID Bluetooth.
Finora sono riuscito a procurarmi un applecript per attivare il bluetooth se è spento. Ecco il codice:
# 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
Qualcuno potrebbe sapere se e come è possibile configurare un nuovo dispositivo Bluetooth e se sarebbe possibile connettersi a un dispositivo in base al nome del dispositivo / all'ID Bluetooth del dispositivo?
Ho anche provato a registrare l'azione in Automator ma per l'opzione "imposta nuovo dispositivo", Automator mi dice semplicemente: "fai clic sul pulsante" ". Grazie