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

  1. global BlinkObjekt, MBAlarm, StartTid
  2.  
  3. on new me
  4.   cursor(0)
  5.   set MBAlarm to 1
  6.   set BlinkObject to 0
  7.   puppetSound(1, "Fejllyd")
  8.   set the visible of sprite 49 to 0
  9.   set the locH of sprite 99 to 780
  10.   set BlinkObjekt to new(script "Blink", 4, 80)
  11.   set StartTid to the timer
  12. end
  13.  
  14. on exitFrame
  15.   set MinTid to (the timer - StartTid) mod 28
  16.   if MinTid < 14 then
  17.     if MBAlarm then
  18.       set the visible of sprite 62 to 1
  19.     else
  20.       puppetSound(1)
  21.     end if
  22.   else
  23.     set the visible of sprite 62 to 0
  24.   end if
  25.   checkBlink(BlinkObjekt)
  26.   go(#loop)
  27. end
  28.