home *** CD-ROM | disk | FTP | other *** search
/ Toy Story Multimedia Press Kit (Mac) / ToyStorycdrom.img / TOYGAME / TOYGAME.MAC / TOYGAME.dxr / 00001.ls next >
Encoding:
Text File  |  1995-10-27  |  479 b   |  21 lines

  1. on startMovie
  2.   if the colorDepth <> 16 then
  3.     set the colorDepth to 16
  4.   end if
  5.   if the colorDepth = 8 then
  6.     set the colorDepth to 32
  7.   end if
  8.   if the colorDepth < 8 then
  9.     set the colorDepth to 8
  10.   end if
  11.   if the colorDepth <= 8 then
  12.     alert("Set your monitor to at least thousands of colors (16-bit) for best viewing.")
  13.   end if
  14.   if the colorDepth = 8 then
  15.     play movie "mov8.dir"
  16.   end if
  17.   if the colorDepth >= 16 then
  18.     play movie "mov16.dir"
  19.   end if
  20. end
  21.