home *** CD-ROM | disk | FTP | other *** search
/ Eidos Interactive CD-ROM 1997 / EIDOS.ISO / data / apache.dxr / 00001.ls next >
Encoding:
Text File  |  1997-10-27  |  679 b   |  38 lines

  1. on startMovie
  2.   puppetTempo(30)
  3.   set the exitLock to 1
  4.   set the timeoutLength to 180 * 60
  5.   set the timeoutScript to "showDemo"
  6.   set the keyDownScript to "set the timeoutKeyDown to TRUE"
  7.   set the mouseDownScript to "set the timeoutMouse to TRUE"
  8.   startText()
  9. end
  10.  
  11. on showDemo
  12.   set the timeoutPlay to 1
  13.   set the timeoutScript to EMPTY
  14.   go("demo")
  15. end
  16.  
  17. on exitVideo
  18.   if the keyCode = 53 then
  19.     stopEvent()
  20.   end if
  21.   set the movieRate of sprite 10 to 0
  22.   set the timeoutScript to "showDemo"
  23.   set the timeoutPlay to 0
  24.   cursor(-1)
  25.   updateStage()
  26.   go(the frame + 1)
  27. end
  28.  
  29. on returnToMenu
  30.   cleanUp()
  31.   unloadMember("demo")
  32.   go("exit")
  33. end
  34.  
  35. on stopMovie
  36.   cleanUp()
  37. end
  38.