home *** CD-ROM | disk | FTP | other *** search
/ PC go! 1996 July / Image.iso / mrmore / tonline / 53inter.dir / 00008.ls < prev    next >
Encoding:
Text File  |  1996-04-11  |  313 b   |  16 lines

  1. on mouseUp
  2.   global gbTeleAuto, glLastFrames
  3.   if gbTeleAuto then
  4.     EndAutoSequence()
  5.     exit
  6.   end if
  7.   ClickButton(the clickOn)
  8.   set l to glLastFrames
  9.   set n to count(l)
  10.   set glLastFrames to list()
  11.   repeat with i = 1 to n - 1
  12.     append(glLastFrames, getAt(l, i))
  13.   end repeat
  14.   GoFrame(getAt(l, n))
  15. end
  16.