home *** CD-ROM | disk | FTP | other *** search
/ Enter 2003: The Beautiful Scenery / enter-parhaat-2003.iso / files / frendz.exe / frendz.dcr / Scripts_12_b_BossBack.ls < prev    next >
Encoding:
Text File  |  2002-12-31  |  817 b   |  32 lines

  1. global gChart, gDrawStage, gRectStage, gScreenLarge, gMacSound, gRadio, gLoop, gTrackName, gSoundEnabled
  2.  
  3. on mouseDown me
  4.   if gChart = "off" then
  5.     x = 990
  6.     repeat with v = 1 to 10
  7.       sprite(x).locV = -300
  8.       x = x + 1
  9.     end repeat
  10.     gChart = "on"
  11.     if gScreenLarge = 0 then
  12.       (the stage).drawRect = gDrawStage
  13.       (the stage).rect = gRectStage
  14.       sprite(11).member = "BossUp"
  15.       gScreenLarge = 0
  16.     else
  17.       sprite(11).member = "BossUp"
  18.     end if
  19.     if gRadio = 1 then
  20.       set the soundLevel to gMacSound
  21.       playMusic()
  22.       put "Track:" && gTrackName into member "t_MessageWindow"
  23.       sprite(35).member = "GreenLights"
  24.     else
  25.       if gSoundEnabled then
  26.         set the soundLevel to gMacSound
  27.         sound(8).play(member("goofy"))
  28.       end if
  29.     end if
  30.   end if
  31. end
  32.