tell application "Finder"
set a to get bounds of Finder window 1
if item 1 of a is equal to 2940 then -- Omenon
set Omneon_win to target of Finder window 1
else
if item 1 of a is equal to 1998 then -- 1030
set win_1030 to target of Finder window 1
else
if item 1 of a is equal to 2945 then -- ABRAHAM
set ABR_win to target of Finder window 1
else
if item 1 of a is equal to 1994 then -- NPR
set NPR_win to target of Finder window 1
end if
end if
end if
end if
-- repeat for windows 2-6
end tell
and repeat for each of the 6 open windows. So every window gets a variable name based on its 1st bounds number.
IS THERE A BETTER WAY OF IDENTIFYING EACH WINDOW, THAT IS THE QUESTION.
Thanks.