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

  1. on mouseDown
  2.   global FramesMap, PrevFrame, MensFrames
  3.   if inside(the clickLoc, rect(22, 189, 122, 429)) then
  4.     set theItem to 1
  5.   else
  6.     if inside(the clickLoc, rect(122, 229, 512, 379)) then
  7.       set theItem to 2
  8.     else
  9.       if inside(the clickLoc, rect(122, 379, 512, 429)) then
  10.         set theItem to 3
  11.       end if
  12.     end if
  13.   end if
  14.   if theItem = 1 then
  15.     go("053")
  16.   else
  17.     if theItem = 2 then
  18.       go("055")
  19.     else
  20.       go("045")
  21.     end if
  22.   end if
  23. end
  24.