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

  1. global BlinkObjekt, HPos
  2.  
  3. on new me
  4.   set BlinkObjekt to new(script "Blink")
  5.   if HPos = -1 then
  6.     set HPos to the mouseH
  7.   end if
  8.   if HPos < 100 then
  9.     set HPos to 100
  10.   end if
  11.   set the locH of sprite 60 to HPos - 50
  12.   set the locH of sprite 61 to HPos - 35
  13.   set the locH of sprite 62 to HPos + 35
  14.   set the locH of sprite 59 to HPos
  15.   set the visible of sprite 61 to 1
  16.   set the visible of sprite 62 to 1
  17.   set the visible of sprite 59 to 1
  18. end
  19.  
  20. on enterFrame
  21.   checkBlink(BlinkObjekt)
  22. end
  23.  
  24. on exitFrame
  25.   go(#loop)
  26. end
  27.