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

  1. global BlinkObjekt
  2.  
  3. on new me
  4.   cursor(0)
  5.   startTimer()
  6.   set BlinkObject to 0
  7.   set the locH of sprite 99 to 780
  8.   set BlinkObjekt to new(script "Blink", 4, 80)
  9. end
  10.  
  11. on exitFrame
  12.   if the timer < 640 then
  13.     set the width of sprite 43 to 95 * the timer / 640
  14.     go(#loop)
  15.   else
  16.     go(#next)
  17.   end if
  18. end
  19.