home *** CD-ROM | disk | FTP | other *** search
/ Micromanía 25 / CDMM_25.iso / takeru / g078 / shrinej / shrine.dxr / Internal_33.ls < prev    next >
Encoding:
Text File  |  1996-09-04  |  715 b   |  32 lines

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