Tengo un Python script para leer de la base de datos de Mensajes y reenviar algunos mensajes nuevos específicos a contactos específicos. Funciona pero el AppleScript de abajo para enviar el mensaje está haciendo que aparezca Messages.app.
Quiero que envíe el mensaje en segundo plano sin activar ni desactivar la ventana. ¿Es esto posible?
on run {targetBuddyPhone, targetMessage}
tell application "Messages"
set targetService to 1st service whose service type = iMessage
set targetBuddy to buddy targetBuddyPhone of targetService
send targetMessage to targetBuddy
set visible to false --> this throws an error on terminal
end tell
end run