Hello all! Using the ComLoad functions I put in my other thread, this script will cycle through all visible Illustrator windows (CS3).
Function NextWindow();;select the next open document window
....@comload()
local totdocs = appRef.Documents.Count
For(i=totdocs;i==totdocs;i++)
local next=appRef.Documents.Item(i)
endfor
next.Activate
....@comunload()
quit
