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

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