home *** CD-ROM | disk | FTP | other *** search
/ Micromanía 25 / CDMM_25.iso / takeru / g078 / shrinej / shrine.dxr / Internal_58.ls < prev    next >
Encoding:
Text File  |  1996-09-04  |  570 b   |  27 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.         set the member 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.