home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2002 #9 / K-CD-9-2002.ISO / Tools / K-CS.dcr / 00202.ls < prev    next >
Encoding:
Text File  |  2002-04-19  |  381 b   |  20 lines

  1. global BlinkObjekt
  2.  
  3. on exitFrame
  4.   checkBlink(BlinkObjekt)
  5.   go(#loop)
  6. end
  7.  
  8. on new me
  9.   cursor(0)
  10.   set BlinkObject to 0
  11.   set the locH of sprite 99 to 780
  12.   set BlinkObjekt to new(script "Blink", 4, 80)
  13.   repeat with Index = 64 to 84
  14.     set the visible of sprite Index to 1
  15.     if not (Index mod 3) = 0 then
  16.       set the locV of sprite Index to 1000
  17.     end if
  18.   end repeat
  19. end
  20.