C'è un modo per sapere se iTunes è in modalità mini player da applescript?
Uso di Mac OS X 10.8.4 Leone di montagna.
C'è un modo per sapere se iTunes è in modalità mini player da applescript?
Uso di Mac OS X 10.8.4 Leone di montagna.
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
Leggi altre domande sui tag mountain-lion itunes applescript