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

  1. on mouseDown
  2.   global switch
  3.   set switch to switch + 1
  4.   if switch > 1 then
  5.     set switch to 0
  6.   end if
  7.   if switch = 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("klein1")
  12.   end if
  13.   if switch = 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("gross1")
  18.   end if
  19.   updateStage()
  20. end
  21.