Cómo saber si iTunes está en modo mini reproductor desde AppleScript

1

¿Hay alguna forma de saber si iTunes está en modo de mini reproductor desde AppleScript?

Utilizando Mac OS X 10.8.4 león de montaña.

    
pregunta Bilal Syed Hussain 07.09.2013 - 15:11

1 respuesta

2

Puedes hacer algo así:

tell application "System Events"
    tell process "iTunes"
        if title of window 1 is "MiniPlayer" then
            -- If mini player
        else if title of window 1 is not "MiniPlayer" then
            -- if big player 
        end if
    end tell
end tell
    
respondido por el Matthieu Riegler 07.09.2013 - 15:27

Lea otras preguntas en las etiquetas