Make your Keyboard LED to dance
The LED lights of any Keyboard (Caps Lock Key, Num Lock Key and Scroll Lock). You can force them to dance using this trick. It is one of c...
https://www.computersprofessor.com/2016/06/make-your-keyboard-led-to-dance.html
The LED lights of any Keyboard (Caps Lock Key, Num Lock Key and Scroll Lock). You can force them to dance using this trick. It is one of cool notepad tricks which you must try to have fun.
- Open Notepad.
- Paste this code in Notepad :
Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{CAPSLOCK}”
wshshell.sendkeys “{NUMLOCK}”
wshshell.sendkeys “{SCROLLLOCK}”
loop
- Save this File as Demo.vbs
- Now, whenever you will click this File, your LED light will simply dance.