home *** CD-ROM | disk | FTP | other *** search
/ Toy Story Multimedia Press Kit (Mac) / ToyStorycdrom.img / TOYMUSIC / TOYMUSIC.MAC / TOYMUSIC.dxr / 00001.ls next >
Encoding:
Text File  |  1995-10-27  |  475 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 256 colors (8-bit) for best viewing.")
  13.   end if
  14.   if the colorDepth = 8 then
  15.     play movie "Record08.dir"
  16.   end if
  17.   if the colorDepth >= 16 then
  18.     play movie "Record16.dir"
  19.   end if
  20. end
  21.