home *** CD-ROM | disk | FTP | other *** search
/ CD-ROM Today (BR) Volume 2 #6 / CDRTV2N6.iso / makers / power / ue.dir / 00239_Script_239 < prev    next >
Text File  |  1996-03-13  |  403b  |  13 lines

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