home *** CD-ROM | disk | FTP | other *** search
/ Blender Volume 3 #4 / Blender_3_4.iso / BLENDER / FILES / CONTROLS.DIR / 00001.ls next >
Encoding:
Text File  |  1997-01-01  |  817 b   |  32 lines

  1. on exitFrame
  2.   global volume, k, ROLLNUMBER
  3.   if the text of member 3 <> the short time then
  4.     set the text of member 3 to the short time
  5.   end if
  6.   repeat with i in [7, 44, 45, 46, 47]
  7.     if rollOver(i) then
  8.       set test to test + 1
  9.       case i of
  10.         7:
  11.           flag(7, "KILL CONTROL PANEL")
  12.         44:
  13.           flag(44, "VOLUME CONTROLS")
  14.           set ROLLNUMBER to 10
  15.           if (volume >= 1) and (volume <= 7) then
  16.             set the castNum of sprite 44 to the number of member ("VOL" & volume & "1") + k
  17.           end if
  18.         45:
  19.           flag(45, "TO MAIN MENU")
  20.         46:
  21.           flag(46, "PANIC SCREEN")
  22.         47:
  23.           flag(47, "ACTIVATE HELP SCREEN")
  24.       end case
  25.     end if
  26.   end repeat
  27.   if not test then
  28.     flag(0, "BLENDER EDITION 3.4")
  29.   end if
  30.   go(the frame)
  31. end
  32.