home *** CD-ROM | disk | FTP | other *** search
/ Mac Ga Ichiban! 1996 June / macgaichiban199606.bin / MOVIES / MT / 00054.ls < prev    next >
Encoding:
Text File  |  1996-03-27  |  399 b   |  27 lines

  1. global loop_cnt
  2.  
  3. on init
  4.   set loop_cnt to 1
  5. end
  6.  
  7. on rewqt spnum
  8.   set the movieRate of sprite spnum to 0
  9.   set the movieTime of sprite spnum to 0
  10.   updateStage()
  11. end
  12.  
  13. on ffqt spnum
  14.   set the movieRate of sprite spnum to 2
  15.   updateStage()
  16. end
  17.  
  18. on stopqt spnum
  19.   set the movieRate of sprite spnum to 0
  20.   updateStage()
  21. end
  22.  
  23. on playqt spnum
  24.   set the movieRate of sprite spnum to 1
  25.   updateStage()
  26. end
  27.