home *** CD-ROM | disk | FTP | other *** search
/ PC/CD Gamer UK 39 / PCGAMER39.bin / games / amber / amberhub.dxr / 00069.ls < prev    next >
Encoding:
Text File  |  1996-11-08  |  390 b   |  22 lines

  1. on exitFrame
  2.   global gRippleSwitch
  3.   cursor(-1)
  4.   if the timer < 1000 then
  5.     go(the frame)
  6.   else
  7.     set gRippleSwitch to 0
  8.   end if
  9. end
  10.  
  11. on mouseDown
  12.   global gSoundPath, gRippleSwitch
  13.   set gRippleSwitch to 0
  14.   cursor(200)
  15.   if soundBusy(1) then
  16.     fadeOutTransit()
  17.     set the volume of sound 1 to 155
  18.     sound playFile 1, gSoundPath & "RoxyThm.aif"
  19.   end if
  20.   go("slideshow")
  21. end
  22.