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

  1. property Loops
  2. global BlinkObjekt
  3.  
  4. on new me
  5.   set Loops to 0
  6.   cursor(0)
  7.   set BlinkObject to 0
  8.   set the locH of sprite 99 to 780
  9.   set BlinkObjekt to new(script "Blink", 4, 80)
  10. end
  11.  
  12. on exitFrame
  13.   set Loops to Loops + 1
  14.   if Loops > 80 then
  15.     go(#next)
  16.   end if
  17.   checkBlink(BlinkObjekt)
  18.   go(#loop)
  19. end
  20.