home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2002 #11 / K-CD-11-2002.ISO / Tools / K-CS.DCR / 00400.ls < prev    next >
Encoding:
Text File  |  2002-02-14  |  520 b   |  25 lines

  1. global SnapMouseY, BlinkObjekt
  2.  
  3. on new me
  4.   cursor(0)
  5.   set the visible of sprite 48 to 0
  6.   set the visible of sprite 49 to 0
  7.   set the visible of sprite 50 to 0
  8.   set Letter to ((SnapMouseY - 3) / 20) - 10
  9.   if Letter < 0 then
  10.     set Letter to 0
  11.   end if
  12.   if Letter > 2 then
  13.     set Letter to 2
  14.   end if
  15.   set the visible of sprite (Letter + 48) to 1
  16.   set BlinkObject to 0
  17.   set the locH of sprite 99 to 780
  18.   set BlinkObjekt to new(script "Blink", 4, 80)
  19. end
  20.  
  21. on exitFrame
  22.   checkBlink(BlinkObjekt)
  23.   go(#loop)
  24. end
  25.