home *** CD-ROM | disk | FTP | other *** search
/ Discovering Nature in the City / LUONTOCD.iso / pc / files / mammswe.dxr / 00020.ls < prev    next >
Encoding:
Text File  |  1996-12-16  |  520 b   |  31 lines

  1. on exitFrame
  2.   markBat()
  3.   pointer()
  4.   bugMenu()
  5.   rollerCheck()
  6.   linkCheck()
  7.   batCheck()
  8.   preLoadcheck()
  9.   go(the frame)
  10. end
  11.  
  12. on batCheck
  13.   set myCursor to [the number of member "hand1", the number of member "hand2"]
  14.   repeat with channel = 10 to 14
  15.     set the cursor of sprite channel to myCursor
  16.     if rollOver(channel) = 0 then
  17.       cursor(-1)
  18.     end if
  19.     if the mouseDown then
  20.       exit repeat
  21.     end if
  22.   end repeat
  23.   exit
  24.   cursor(-1)
  25. end
  26.  
  27. on markBat
  28.   global gFrame
  29.   set gFrame to the frame - 10
  30. end
  31.