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

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