Contare il numero di finestre aperte

4

C'è uno strumento per contare il numero di finestre che ho aperto, incluso su tutti gli spazi?

Sono curioso e troppo pigro per farlo manualmente. :)

    
posta Reid 02.03.2011 - 20:21
fonte

1 risposta

2

Immagino che questo AppleScript dovrebbe fare:

set numberOfWindows to "0"

tell application "System Events"
    set allProcesses to application processes
    repeat with i from 1 to number of allProcesses
        tell process i
            set numberOfWindows to (numberOfWindows + (count windows))
        end tell
    end repeat
end tell
    
risposta data 02.03.2011 - 20:33
fonte

Leggi altre domande sui tag