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

  1. global gSoundObj, gMasterObj, gMenuObj
  2.  
  3. on startMovie
  4.   autoUnloadMovie(gMasterObj)
  5.   autoLoad(gMasterObj, 11, 70)
  6.   set the actorList to []
  7.   append(the actorList, gSoundObj)
  8.   playSoundTrack(gSoundObj, "csintro", 1, 255)
  9.   init(gMenuObj, 5, "ch.00000")
  10.   set newCarousel to new(script "carouselScript")
  11.   init(newCarousel, "new1.PCT", 2, 3, 4, 60, 4)
  12. end
  13.  
  14. on getName whichSprite
  15.   set myName to the name of the member of sprite whichSprite
  16.   return chars(myName, 1, the length of myName - 5)
  17. end
  18.  
  19. on stopMovie
  20.   set the actorList to []
  21. end
  22.