Come sapere se iTunes nella modalità mini player da applescript

1

C'è un modo per sapere se iTunes è in modalità mini player da applescript?

Uso di Mac OS X 10.8.4 Leone di montagna.

    
posta Bilal Syed Hussain 07.09.2013 - 15:11
fonte

1 risposta

2

Puoi fare qualcosa del genere:

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
    
risposta data 07.09.2013 - 15:27
fonte

Leggi altre domande sui tag