home *** CD-ROM | disk | FTP | other *** search
/ What PC? 1996 August / WPCAUG96.ISO / makers / power / ue.dir / 00239.ls < prev    next >
Encoding:
Text File  |  1996-06-12  |  421 b   |  17 lines

  1. on enterFrame
  2.   if inside(point(the mouseH, the mouseV), rect(22, 189, 122, 429)) then
  3.     MyCursor(254, 255)
  4.   else
  5.     if inside(point(the mouseH, the mouseV), rect(122, 229, 512, 379)) then
  6.       MyCursor(258, 259)
  7.     else
  8.       if inside(point(the mouseH, the mouseV), rect(122, 379, 512, 429)) then
  9.         MyCursor(256, 257)
  10.       else
  11.         ReleasCursor()
  12.         cursor(0)
  13.       end if
  14.     end if
  15.   end if
  16. end
  17.