You are here :Home > HowTo > Keyboard LED light
How to make your keyboard LED light dance.
As we all know Keyboards have 3 LEDs
1.NUM LOCK
2.CAPS LOCK
3.SCROLL LOCK...
Here is a trick to use the LED lights in more creative manner in Windows.Basically we will create a vbscript(visual basic script) to make Caps,Num and Scroll Lock to perform this trick.
This script will make your Num, Caps and Scroll Lock LED's flash in a cool rhythmic manner which gives a perception of disco light on your Keyboard.So lets get started..
1.Open Notepad and copy below codes into it.
2.Then save this file as led.vbs (.vbs is must).
2.Open your saved file and see your keyboard LED blinking like disco light.
How to disable Blinking lights.
1.Open the Task Manager(ctrl+alt+del)
4.Click on End Process.
How to make your keyboard LED light dance.
As we all know Keyboards have 3 LEDs
1.NUM LOCK
2.CAPS LOCK
3.SCROLL LOCK...
Here is a trick to use the LED lights in more creative manner in Windows.Basically we will create a vbscript(visual basic script) to make Caps,Num and Scroll Lock to perform this trick.
This script will make your Num, Caps and Scroll Lock LED's flash in a cool rhythmic manner which gives a perception of disco light on your Keyboard.So lets get started..
1.Open Notepad and copy below codes into it.
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
2.Then save this file as led.vbs (.vbs is must).
2.Open your saved file and see your keyboard LED blinking like disco light.
How to disable Blinking lights.
1.Open the Task Manager(ctrl+alt+del)
2.Then go to Process tab.
3.Select wscript.exe
No comments:
Post a Comment