home *** CD-ROM | disk | FTP | other *** search
/ The GrooveMaker & DANCITY Sample Collection 1.1 / GM+Dancity1.iso / pc / GM_tutorial / GrooveTutorial.exe / GrooveTutorial.dxr / 00005.ls < prev    next >
Encoding:
Text File  |  1998-04-10  |  335 b   |  17 lines

  1. on startMovie
  2.   global gInfo, gDir, gYellow, gBlue, gGreen, gRed
  3.   set gDir to the moviePath
  4.   case the colorDepth of
  5.     8:
  6.       set gYellow to 11
  7.       set gBlue to 14
  8.       set gGreen to 54
  9.       set gRed to 116
  10.     otherwise:
  11.       set gYellow to 19
  12.       set gBlue to 1
  13.       set gGreen to 161
  14.       set gRed to 6
  15.   end case
  16. end
  17.