He seguido a iFixit tutorial cómo hacer la aplicación "AirPods connect" para Mac. Funciona perfectamente pero no puedo ejecutarla con Siri. Usando Spotlight o pulsando sobre ella funciona, pero Siri no la abre y dice "Lo siento, me temo que no puedo hacerlo". ¿Qué me estoy perdiendo? Otras aplicaciones se abren con Siri sin problemas.
activate application "SystemUIServer"
tell application "System Events"
tell process "SystemUIServer"
-- Working CONNECT Script. Goes through the following:
-- Clicks on Bluetooth Menu (OSX Top Menu Bar)
-- => Clicks on SX-991 Item
-- => Clicks on Connect Item
set btMenu to (menu bar item 1 of menu bar 1 whose description contains "bluetooth")
tell btMenu
click
tell (menu item "SX-991" of menu 1)
click
if exists menu item "Connect" of menu 1 then
click menu item "Connect" of menu 1
return "Connecting..."
else
click btMenu -- Close main BT drop down if Connect wasn't present
return "Connect menu was not found, are you already connected?"
end if
end tell
end tell
end tell
end tell