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

  1. on enterFrame
  2.   global FramesMap,MensFrames
  3.   
  4.   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.