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

  1. on mouseDown
  2.   global FramesMap, PrevFrame
  3.   set theItem to the clickOn - 19
  4.   set theLine to (the frame + 2) / 3
  5.   if char 3 of the name of cast the castNum of sprite the clickOn = "H" then
  6.     if string(item theItem of line theLine of FramesMap) <> "---" then
  7.       go(string(item theItem of line theLine of FramesMap))
  8.     else
  9.       chooseBack(theLine, theItem)
  10.     end if
  11.   end if
  12.   if ((the frame + 2) / 3) <> theLine then
  13.     set PrevFrame to theLine
  14.   end if
  15. end
  16.