home *** CD-ROM | disk | FTP | other *** search
/ Introducing the New Way to Shop from Home / Iceland.iso / pc / Xtras / quitmsg.txt < prev    next >
Text File  |  2002-12-21  |  509b  |  14 lines

  1. QuitMsg  installs a handler that gets executed when the user tries to quit by clicking the close button, pressing Alt-F4, or using the system menu. You need to use the exitLock to true to stop Director from quitting, but naturally you can also use a Quit command in your quitMsg handler after doing some cleanup task. Here is an example of the scripts.
  2.  
  3. on startMovie
  4.   set the exitLock = true
  5.   startQuitMsg()
  6. end
  7.  
  8. on quitMsg
  9.   alert( "Attempted to quit" )
  10. end
  11.  
  12. on stopMovie
  13.   closeQuitMsg()
  14. end