Necesidad de 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 abowe funciona bien, y conseguir TODO abrió la ventana de Safari.
¿Cómo se puede obtener el Windows sólo desde el escritorio actual? Así que necesita 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?