Thanks for your answer.
The procedure starts with several documents open, including
output.doc.
The lines of code which produce an error message read:
'select extract
Selection.WholeStory
Selection.Copy
'paste into output file and process
Windows("output.doc").Activate
Selection.WholeStory
Selection.Paste
Call zCet2Source
The procedure would continue, including several stages in
which other documents are activated (process.doc,
source.doc, extract.dot -- that's what I mean by "the
like", I assume that none of them will work). The procedure
runs satisfactorily in Word 2000 for Windows. When I try to
run it in Word X for Macintosh, I get the error message
"Runtime error 5941 The requested member of the collection
does not exist", and debug highlights
Windows("output.doc").Activate
Output.doc is in fact open, and so are the other documents
to be activated at later stages.
John Kilcullen