Devi fare qualcosa come il prossimo
tell application "Safari"
activate
set AllWindows to every window
set WinCount to number of items in AllWindows
repeat with i from 1 to WinCount
set this_window to item i of AllWindows
-- do something with the this_window
end repeat
end tell
Il lavoro di abowe va bene, e ottenere TUTTI ha aperto la finestra di Safari aperta.
Come si può ottenere la finestra solo dal desktop curvilineo? Quindi è necessario modificare leggermente la linea
set AllWindows to every window
in qualcosa di simile
set AllWindows to ONLY FROM THE CURRENT desktop windows :)
Qualche idea?