Make Your Keyboard Disco Light


SUBMITTED BY: samuel4aos

DATE: Aug. 31, 2016, 8:18 a.m.

FORMAT: Text only

SIZE: 933 Bytes

HITS: 707

  1. Make Your Keyboard Disco Light
  2. This trick just makes your keyboard lights do disco.
  3. The script I’m sharing with you, when executed makes your Caps, Num and Scroll Lock’s light flash in a cool rhythmic way!
  4. 1.This piece of code makes ur keyboard a live disco..
  5. Set wshShell =wscript.CreateObject(“WScript.Shell”)
  6. do
  7. wscript.sleep 100
  8. wshshell.sendkeys “{CAPSLOCK}”
  9. wshshell.sendkeys “{NUMLOCK}”
  10. wshshell.sendkeys “{SCROLLLOCK}”
  11. loop
  12. 2.This one makes it looks like a chain of light….
  13. Set wshShell =wscript.CreateObject(“WScript.Shell”)
  14. do
  15. wscript.sleep 200
  16. wshshell.sendkeys “{CAPSLOCK}”
  17. wscript.sleep 100
  18. wshshell.sendkeys “{NUMLOCK}”
  19. wscript.sleep 50
  20. wshshell.sendkeys “{SCROLLLOCK}”
  21. loop
  22. Instructions:
  23. *paste any of the two above codes in notepad
  24. *Save as “AnyFileName”.vbs
  25. *Run the file
  26. *To stop, launch task manager and then under “Processes” end “wscript.exe”
  27. I hope u would like it..

comments powered by Disqus