Estoy tratando de usar applecript para esperar una palabra clave de serie (en la pantalla, en la terminal), y luego pausePlay Spotify cuando se ve la palabra clave. Funciona bien al principio, pero luego se bloquea rápidamente. ¿Alguien puede hacerme saber qué estoy haciendo mal?
Gracias de antemano.
Lo siento, pero parece que no puedo hacer que el código Applescript se formatee correctamente aquí ... Aquí está el código de Apple:
tell application "Terminal"
set the bounds of window 1 to {0, 0, 500, 100}
end tell
set trigger to 1
set stopString to ""
repeat until (stopString = "stop")
tell application "Terminal"
if the contents of window 1 contains "Start MP3" and trigger is 1 then
tell application "Spotify" to playpause
set trigger to 0
end if
if the contents of window 1 does not contain "Start MP3" then
set trigger to 1
end if
if the contents of window 1 contains "Stop Loop" then
set stopString to "stop"
end if
end tell
end repeat