Necesito hacer algo como lo siguiente
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
El siguiente trabajo funciona bien, y al abrir TODO se abre la ventana de Safari.
¿Cómo puedo obtener las ventanas solo desde el escritorio actual? Así que necesito cambiar un poco la línea
set AllWindows to every window
a algo como
set AllWindows to ONLY FROM THE CURRENT desktop windows :)
¿Alguna idea?