How to make a keyboard Disco:
Here is a cool trick to flash your keyboard lights (LED's) in a cool fun manner. This trick uses simple visual basic script which when activated makes your keyboard LED's flash in cool rhythmic way which gives the perception of a live disco on your keyboard.
To make your own live keyboard disco, follow the steps given below.
1. Open notepad.
2. copy the code given below and paste it in notepad editor.
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop
3. Save the file as Disco.vbs
To see how it works, Open Disco.vbs file and see the trick.