home *** CD-ROM | disk | FTP | other *** search
/ Toy Story Multimedia Press Kit (Mac) / ToyStorycdrom.img / TOYGAME / mov16.dir / 00020.ls < prev    next >
Encoding:
Text File  |  1995-10-30  |  393 b   |  30 lines

  1. on startMovie
  2.   preLoad(1, 20)
  3. end
  4.  
  5. on keyDown
  6.   if the key = "q" then
  7.     quit()
  8.   end if
  9.   if the key = "t" then
  10.     go("Text")
  11.   end if
  12.   if the key = "m" then
  13.     go("Movie")
  14.   end if
  15.   if the key = "s" then
  16.     go("Slideshow")
  17.   end if
  18.   if the keyCode = 49 then
  19.     spacebarDown()
  20.   end if
  21. end
  22.  
  23. on spacebarDown
  24.   if the pauseState = 0 then
  25.     pause()
  26.   else
  27.     continue()
  28.   end if
  29. end
  30.