home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2002 #3 / K-CD-3-2002.ISO / K-CS.DCR / 00300.ls < prev    next >
Encoding:
Text File  |  2002-01-14  |  644 b   |  27 lines

  1. global BlinkObjekt
  2.  
  3. on new me
  4.   startTimer()
  5.   set BlinkObject to 0
  6.   set the visible of sprite 48 to 1
  7.   set the visible of sprite 49 to 1
  8.   set the visible of sprite 50 to 0
  9.   set the visible of sprite 51 to 0
  10.   set the visible of sprite 52 to 0
  11.   set the locH of sprite 99 to 780
  12.   set BlinkObjekt to new(script "Blink")
  13.   set the locH of sprite 99 to 780
  14. end
  15.  
  16. on exitFrame
  17.   if the timer > 480 then
  18.     set the visible of sprite 48 to 0
  19.     set the visible of sprite 49 to 0
  20.     set the visible of sprite 50 to 1
  21.     set the visible of sprite 51 to 1
  22.     set the visible of sprite 52 to 1
  23.   end if
  24.   checkBlink(BlinkObjekt)
  25.   go(#loop)
  26. end
  27.