Make your keyboard a Disco light | Tricks for Windows


This is a funny trick with which you can amuse you friends. This trick looks more fascinating in the dark as the you can see the light properly.

This trick will make your keyboard LED’s blink like disco lights. Keyboards usually have small LEDs which indicate whether different types of locks are Turned on or not. This trick uses the lights of your keyboard in a more creative manner in Windows. It makes your Scroll lock, Caps lock and Num lock LEDs flash in a cool rhythmic way which gives the perception of a live disco on your keyboard. This method is based on an a vb script (Visual Basic Script).

Turn your Keyboard into Disco Light

To convert your keyboard into Live disco, follow the steps given below:-

1. Open Notepad. (Go to 'Start' then search for 'Notepad' and open it)

2. Copy and Paste one of the code below into the Notepad.

Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop

or

Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 200
wshshell.sendkeys "{CAPSLOCK}"
wscript.sleep 100
wshshell.sendkeys "{NUMLOCK}"
wscript.sleep 50
wshshell.sendkeys "{SCROLLLOCK}"
loop

or

Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 5
wshshell.sendkeys "{CAPSLOCK}"
wscript.sleep 10
wshshell.sendkeys "{NUMLOCK}"
wscript.sleep 15
wshshell.sendkeys "{SCROLLLOCK}"
wscript.sleep 200
wshshell.sendkeys "{CAPSLOCK}"
wscript.sleep 100
wshshell.sendkeys "{NUMLOCK}"
wscript.sleep 50
wshshell.sendkeys "{SCROLLLOCK}"
loop


3. Now Save the file as Disco.vbs (or give the file any other name with an extension ".vbs").

Also make the 'save as type' as 'All Files'.

(If the file is already a saved one then click on 'Save as')



4. Double click on the Saved file to see the magic on your Keyboard. Your keyboard Led’s will start blinking like disco lights.

5. To disable the keyboard disco lights. Open Task Manager (you can use shortcut "Ctrl + Shift + Esc" on your keyboard to open Windows task Manager).
Locate " wscript.exe " and select it, and click on " End Process ".



Post a Comment

1 Comments