home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2002 #3 / K-CD-3-2002.ISO / K-CS.DCR / 00465.ls < prev    next >
Encoding:
Text File  |  2002-01-14  |  360 b   |  24 lines

  1. global BlinkObjekt
  2.  
  3. on new me
  4.   cursor(0)
  5.   set BlinkObject to 0
  6.   set the locH of sprite 99 to 780
  7.   set BlinkObjekt to new(script "Blink", 4, 80)
  8. end
  9.  
  10. on exitFrame
  11.   checkBlink(BlinkObjekt)
  12.   go(#loop)
  13. end
  14.  
  15. on keyDown
  16.   if the optionDown then
  17.     if the controlDown then
  18.       if the keyCode = 101 then
  19.         go(#next)
  20.       end if
  21.     end if
  22.   end if
  23. end
  24.