Create and save a document (Save As...)



tell application "Microsoft Word"
make new document
set theDesktopFolder to path to desktop as Unicode text
set theFileName to "TheNewDocument.rtf"
save as document 1 file name (theDesktopFolder & theFileName) file format format rtf
close active document saving no --this could probably be made to document 1 just as easily.
end tell