Estoy tratando de encontrar una solución para adelantar una pista en la aplicación Música mientras está minimizada y mientras estoy trabajando en otra aplicación. Tengo algunas ideas de Keyboard Maestro pero no estoy seguro de que los pasos sean los correctos.
He recibido el siguiente script y he pedido que se cree un AppleScript pero, por alguna razón, no funciona:
set A to {}
tell application "QuickTime Player" to if it is running and (playing of documents contains true) then set end of A to "QuickTime Player"
tell application "Music" to if it is running and (player state is playing) then set end of A to "Music"
tell application "Spotify" to if it is running and (player state is playing) then set end of A to "Spotify"
tell application "VLC" to if it is running and playing then set end of A to "VLC"
A
¿Hay algo malo aquí?
Tampoco pude guardar el script en el editor de Applescript.
1 votos
¿Qué quiere decir con que no funciona? ¿Qué parece hacer?