home *** CD-ROM | disk | FTP | other *** search
/ CD Loisirs 24 / CDL24.iso / LAPLACE / IDEM.DXR / Biographie_10_Select It.ls < prev    next >
Encoding:
Text File  |  1996-10-10  |  573 b   |  31 lines

  1. on exitFrame
  2.   global gLow
  3.   set Y to 0
  4.   repeat with x = 2 to 7
  5.     if rollOver(x) then
  6.       set Y to x
  7.     end if
  8.     set the visible of sprite x to 0
  9.   end repeat
  10.   set the visible of sprite Y to 1
  11.   updateStage()
  12.   if the mouseDown and (Y <> 0) then
  13.     case Y of
  14.       2:
  15.         puppetSound("DEB.AIF")
  16.       3:
  17.         puppetSound("SCEN.AIF")
  18.       4:
  19.         puppetSound("TOUR.AIF")
  20.       5:
  21.         puppetSound("GROT.AIF")
  22.       6:
  23.         puppetSound("SORT.AIF")
  24.       7:
  25.         puppetSound("FIN.AIF")
  26.     end case
  27.     updateStage()
  28.   end if
  29.   go(the frame)
  30. end
  31.