home *** CD-ROM | disk | FTP | other *** search
/ PC-Online 1996 June / PCOnline_06_1996.iso / mrmore / mrmore.dir / 00063_Script_63 < prev    next >
Text File  |  1996-04-11  |  506b  |  16 lines

  1. -- runterscrollen mit balken
  2.  
  3. on mouseDown
  4.   global gnFirstSprite, gnTextHeight
  5.   
  6.   ClickButton(the clickOn)
  7.   
  8.   if the locV of sprite (gnFirstSprite+1) < 79 then
  9.     set the puppet of sprite (gnFirstSprite+1)  = true
  10.     set the puppet of sprite (gnFirstSprite+2)  = true
  11.     set the locV of sprite (gnFirstSprite+1)  = the locV of sprite (gnFirstSprite+1) + gnTextHeight
  12.     set the locV of sprite (gnFirstSprite+2)  = the locV of sprite (gnFirstSprite+2) + gnTextHeight
  13.   end if
  14.   
  15. end
  16.