home *** CD-ROM | disk | FTP | other *** search
/ GQ - Louise, World Cup, …remy Clarkson, Armageddon / GQCD.iso / files / sprtmain.dxr / 00053.ls < prev    next >
Encoding:
Text File  |  1998-05-21  |  454 b   |  26 lines

  1. global gSoundObj, gMasterObj, gMenuObj
  2.  
  3. on startMovie
  4.   autoUnloadMovie(gMasterObj)
  5. end
  6.  
  7. on setUpMain
  8.   repeat with i = 2 to 6
  9.     set newRollObj to new(script "bounceScript", i, the memberNum of sprite i)
  10.     append(the actorList, newRollObj)
  11.   end repeat
  12. end
  13.  
  14. on addSound
  15.   append(the actorList, gSoundObj)
  16.   playSoundTrack(gSoundObj, "chumb", 1, 255)
  17. end
  18.  
  19. on addMenu
  20.   init(gMenuObj, 9, "spmenu.00000")
  21. end
  22.  
  23. on stopMovie
  24.   set the actorList to []
  25. end
  26.