home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #8 / CD 8 (Black) - 2001.iso / K-CS.dcr / 00313.ls < prev    next >
Encoding:
Text File  |  2001-02-20  |  342 b   |  22 lines

  1. global BlinkObjekt
  2.  
  3. on new me
  4.   startTimer()
  5.   set BlinkObject to 0
  6.   set the locH of sprite 99 to 780
  7.   set BlinkObjekt to new(script "Blink")
  8. end
  9.  
  10. on exitFrame
  11.   checkBlink(BlinkObjekt)
  12.   if the timer < 240 then
  13.     go(#loop)
  14.   else
  15.     if the visible of sprite 59 = 0 then
  16.       go(#next)
  17.     else
  18.       go("SMC5")
  19.     end if
  20.   end if
  21. end
  22.