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

  1. on exitFrame
  2.   if rollOver(6) then
  3.     cursor(200)
  4.     set the castNum of sprite 45 to 110
  5.   else
  6.     if rollOver(7) then
  7.       cursor(200)
  8.       set the castNum of sprite 45 to 106
  9.     else
  10.       if rollOver(8) then
  11.         cursor(200)
  12.         set the castNum of sprite 45 to 107
  13.       else
  14.         set the castNum of sprite 45 to 0
  15.         cursor(-1)
  16.       end if
  17.     end if
  18.   end if
  19.   go(the frame)
  20. end
  21.  
  22. on idle
  23.   set the locH of sprite 45 to the mouseH
  24.   set the locV of sprite 45 to the mouseV
  25.   updateStage()
  26. end
  27.