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

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