home *** CD-ROM | disk | FTP | other *** search
/ 1&1 Multimedia Trend 1996 11 B / MM_TREND.ISO / prog / t_online / t_wie.dir / 00071.ls < prev    next >
Encoding:
Text File  |  1996-09-16  |  439 b   |  21 lines

  1. on mouseDown
  2.   global switch2
  3.   set switch2 to switch2 + 1
  4.   if switch2 > 1 then
  5.     set switch2 to 0
  6.   end if
  7.   if switch2 = 0 then
  8.     repeat with a = 24 to 47
  9.       set the locH of sprite a to the locH of sprite a + 1000
  10.     end repeat
  11.     go("klein2")
  12.   end if
  13.   if switch2 = 1 then
  14.     repeat with a = 24 to 47
  15.       set the locH of sprite a to the locH of sprite a - 1000
  16.     end repeat
  17.     go("gross2")
  18.   end if
  19.   updateStage()
  20. end
  21.