home *** CD-ROM | disk | FTP | other *** search
/ The Trigger Effect Interactive Kit / triggerz.exe / Trigger.exe / Trigger.DXR / 00194_up.ls < prev    next >
Encoding:
Text File  |  1996-08-11  |  332 b   |  13 lines

  1. on mouseDown
  2.   global LineStart, LineEnd
  3.   repeat while the stillDown
  4.     set LineStart to LineStart - 1
  5.     set LineEnd to LineEnd - 1
  6.     if LineStart < 1 then
  7.       set LineStart to 1
  8.       set LineEnd to 27
  9.     end if
  10.     put line LineStart to LineEnd of field "credits.source" into field "credits.destination"
  11.   end repeat
  12. end
  13.