home *** CD-ROM | disk | FTP | other *** search
/ .net 1998 February / netCD41.iso / pc / PC16.DIR / 00024.ls < prev    next >
Encoding:
Text File  |  1997-12-08  |  1.6 KB  |  59 lines

  1. on exitFrame
  2.   if rollOver(30) then
  3.     set the ink of sprite 30 to 0
  4.     updateStage()
  5.     repeat while (rollOver(30) = 1) and (the mouseDown = 0)
  6.       nothing()
  7.     end repeat
  8.   else
  9.     if rollOver(31) then
  10.       set the ink of sprite 31 to 0
  11.       updateStage()
  12.       repeat while (rollOver(31) = 1) and (the mouseDown = 0)
  13.         nothing()
  14.       end repeat
  15.     else
  16.       if rollOver(32) then
  17.         set the ink of sprite 32 to 0
  18.         updateStage()
  19.         repeat while (rollOver(32) = 1) and (the mouseDown = 0)
  20.           nothing()
  21.         end repeat
  22.       else
  23.         if rollOver(33) then
  24.           set the ink of sprite 33 to 0
  25.           updateStage()
  26.           repeat while (rollOver(33) = 1) and (the mouseDown = 0)
  27.             nothing()
  28.           end repeat
  29.         else
  30.           if rollOver(34) then
  31.             set the ink of sprite 34 to 0
  32.             updateStage()
  33.             repeat while (rollOver(34) = 1) and (the mouseDown = 0)
  34.               nothing()
  35.             end repeat
  36.           else
  37.             if rollOver(35) then
  38.               set the ink of sprite 35 to 0
  39.               updateStage()
  40.               repeat while (rollOver(35) = 1) and (the mouseDown = 0)
  41.                 nothing()
  42.               end repeat
  43.             else
  44.               if rollOver(36) then
  45.                 set the ink of sprite 36 to 0
  46.                 updateStage()
  47.                 repeat while (rollOver(36) = 1) and (the mouseDown = 0)
  48.                   nothing()
  49.                 end repeat
  50.               end if
  51.             end if
  52.           end if
  53.         end if
  54.       end if
  55.     end if
  56.   end if
  57.   go(the frame)
  58. end
  59.