home *** CD-ROM | disk | FTP | other *** search
/ Introducing the New Way to Shop from Home / Iceland.iso / pc / internetaccess.dir / 00400_Script_400 < prev   
Text File  |  2003-03-05  |  460b  |  30 lines

  1. on startMovie
  2.   global MacOn
  3.   if MacOn = 1 then 
  4.     nothing
  5.   else
  6.     set the exitLock = true
  7.     startQuitMsg()
  8.     set the keyDownScript = "myNoEscape"
  9.   end if
  10.   set the keyDownScript = "myNoEscape"
  11. end
  12.  
  13. on quitMsg
  14.   go to movie "closing"
  15. end
  16.  
  17. on myNoEscape
  18.   if the keyCode=53 then
  19.     go to movie "closing"
  20.   end if
  21. end
  22.  
  23. on stopMovie
  24.   global MacOn
  25.   if MacOn = 1 then 
  26.     nothing
  27.   else
  28.     closeQuitMsg()
  29.   end if
  30. end