home *** CD-ROM | disk | FTP | other *** search
/ Computer Music Interactive 30 / CMi30.iso / pc / intro / 00001_Main Movie Scripts.ls next >
Encoding:
Text File  |  2000-10-10  |  1.2 KB  |  56 lines

  1. on startMovie
  2.   if the colorDepth <> 16 then
  3.     set the colorDepth to 16
  4.   end if
  5.   if the quickTimePresent = 0 then
  6.     go("QTChoose")
  7.   else
  8.     go("IntroLoop")
  9.   end if
  10. end
  11.  
  12. on WheresQTRoll
  13.   if rollOver(7) then
  14.     set the visible of sprite 4 to 1
  15.     set the visible of sprite 5 to 0
  16.     set the visible of sprite 6 to 0
  17.   else
  18.     if rollOver(8) then
  19.       set the visible of sprite 4 to 0
  20.       set the visible of sprite 5 to 1
  21.       set the visible of sprite 6 to 0
  22.     else
  23.       if rollOver(9) then
  24.         set the visible of sprite 4 to 0
  25.         set the visible of sprite 5 to 0
  26.         set the visible of sprite 6 to 1
  27.       else
  28.         set the visible of sprite 4 to 0
  29.         set the visible of sprite 5 to 0
  30.         set the visible of sprite 6 to 0
  31.       end if
  32.     end if
  33.   end if
  34. end
  35.  
  36. on introRoller
  37.   if rollOver(20) then
  38.     set the visible of sprite 2 to 1
  39.     set the visible of sprite 3 to 0
  40.   else
  41.     if rollOver(21) then
  42.       set the visible of sprite 2 to 0
  43.       set the visible of sprite 3 to 1
  44.     else
  45.       set the visible of sprite 2 to 0
  46.       set the visible of sprite 3 to 0
  47.     end if
  48.   end if
  49.   setTheVolumePlease()
  50. end
  51.  
  52. on stopMovie
  53.   puppetSound(1, 0)
  54.   puppetSound(0)
  55. end
  56.