home *** CD-ROM | disk | FTP | other *** search
/ Car Screensaver - Toyota / TOYOTA.iso / mjparty / no1_demo.exe / no1_demo.dxr / 00001.ls next >
Encoding:
Text File  |  1996-10-31  |  463 b   |  25 lines

  1. on startMovie
  2.   global gsnd, gdep, gstp
  3.   set gstp to 0
  4.   set gsnd to the soundLevel
  5.   if gsnd = 0 then
  6.     set the soundLevel to 1
  7.   end if
  8.   if the machineType <> 256 then
  9.     set gdep to the colorDepth
  10.     if gdep <> 8 then
  11.       set the colorDepth to 8
  12.     end if
  13.   end if
  14. end
  15.  
  16. on stopMovie
  17.   global gsnd, gdep, gstp
  18.   if gstp = 0 then
  19.     set the soundLevel to gsnd
  20.     if the machineType <> 256 then
  21.       set the colorDepth to gdep
  22.     end if
  23.   end if
  24. end
  25.