home *** CD-ROM | disk | FTP | other *** search
/ Micromanía 25 / CDMM_25.iso / takeru / g078 / jail.dxr / Internal_30.ls < prev    next >
Encoding:
Text File  |  1996-09-04  |  938 b   |  42 lines

  1. on exitFrame
  2.   if rollOver(17) then
  3.     cursor(200)
  4.     set the castNum of sprite 45 to 101
  5.   else
  6.     if rollOver(19) then
  7.       cursor(200)
  8.       set the castNum of sprite 45 to 101
  9.     else
  10.       if rollOver(21) then
  11.         cursor(200)
  12.         set the castNum of sprite 45 to 101
  13.       else
  14.         if rollOver(24) then
  15.           cursor(200)
  16.           set the castNum of sprite 45 to 101
  17.         else
  18.           if rollOver(10) then
  19.             cursor(200)
  20.             set the castNum of sprite 45 to 101
  21.           else
  22.             if rollOver(6) then
  23.               cursor(200)
  24.               set the castNum of sprite 45 to 110
  25.             else
  26.               set the castNum of sprite 45 to 0
  27.               cursor(-1)
  28.             end if
  29.           end if
  30.         end if
  31.       end if
  32.     end if
  33.   end if
  34.   go(the frame)
  35. end
  36.  
  37. on idle
  38.   set the locH of sprite 45 to the mouseH
  39.   set the locV of sprite 45 to the mouseV
  40.   updateStage()
  41. end
  42.