Sto cercando di usare il applescript per aspettare una parola chiave seriale (nel terminale Screen-in), quindi mettere in pausa Spotify quando viene vista la parola chiave. All'inizio funziona bene, ma poi si blocca rapidamente. Qualcuno può farmi sapere cosa sto sbagliando?
Grazie in anticipo.
Mi dispiace, ma non riesco a ottenere il codice di Applescript per formattare correttamente qui ... Ecco il codice di Applescript:
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