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

  1. on mouseDown
  2.   global FramesMap,PrevFrame,MensFrames
  3.   
  4.   if inside(the clickLoc, rect(122, 229, 512, 379)) then   --forward
  5.     put 1 into theItem
  6.   else  if inside(the clickLoc, rect(122, 379, 512, 429)) then   --back
  7.     put 2 into theItem
  8.   end if
  9.   updateStage
  10.   if theItem = 1 then
  11.     go frame "057"
  12.   else
  13.     go frame "052"
  14.   end if
  15. end