WD: AppleScript Example: Close Command

Last reviewed: February 3, 1998
Article ID: Q125580
The information in this article applies to:
  • Microsoft Word for the Macintosh, version 6.0, 6.0.1, 6.0.1a
  • Microsoft Word 98 Macintosh Edition

SUMMARY

The information in this article discusses the following AppleScript event:

   Close

This event is found in the Core Suite of Word's Event Dictionary.

MORE INFORMATION

Microsoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific needs. If you have limited programming experience, you may want to contact the Microsoft fee-based consulting line at (800) 936-5200. For more information about the support options available from Microsoft, please see the following page on the World Wide Web:

   http://www.microsoft.com/supportnet/refguide/ 

The Core Suite contains events that a program should support to facilitate easy, intuitive communications between the program and the system software. System 7.0 was the first operating system to support these events.

The Close command is used to Close documents within Microsoft Word. The syntax for this command is listed below. The words enclosed by the [] symbols specifies an optional argument for the Close command.

   Close 'something' [Saving ] [Saving In]

      The Saving argument can have three values
         Yes - Will save the document before closing it.
          No - Will not save the document before closing it.
         Ask - Will prompt the user to either save or not save before
               closing the document.

      The Saving In argument is the path you want the document to be
      saved to. If you change the file name in this path, the document
      will be saved under a different name.

Example

The following AppleScript script sample demonstrates the Close event.

tell application "Microsoft Word"

   open "MyWordFile"
   set selection to first word
   delete selection
   close "MyWordFile" Saving ask saving in "WordCopy"
end tell

This script does the following:

  1. Opens the document named "MyWordFile".

  2. Selects the first word in the document.

  3. Deletes the word.

  4. Closes the document and asks whether you want to save or discard the changes before you close the document. It also saves the document using the file name, "WordCopy."


Additional query words: Apple script
Keywords : kbmacroexample macword word6 kb3rdparty kbcode kbmacro kbprg
Version : MACINTOSH:6.0,6.0.1,6.0.1a
Platform : MACINTOSH
Issue type : kbinfo


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: February 3, 1998
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.