Hi,I think the following script does just what you want for all hidden and non-hidden windows that are not minimized.
%M="";C=0; /* init variables */
doc -e O { /* loop on all no minimized windows */
%M=%M %H; /* make window list */
C++; /* increment window count */
};
Loop(ii,1,C) { /* loop on all windows */
type -a %[%M,#$(ii)]; /* type window name of iith window */
};
[This message has been edited by Gary Lane (edited 01-12-99).]