Friday, 25 October 2013

Cool Keyboard Tricks : Make a Disco

This trick uses a simple Visual Basic Script which when activated makes your Scroll lock, Caps lock and Num lock LEDs flashs in a cool musical way which gives the perception of a live disco on your keyboard.


To make your own live disco, follow the steps given below:-

1. Open Notepad.
2. Copy paste the exact code given below:-
 =============================================
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop
==============================================

3. Save the file as Disco.vbs or "*.vbs".

Double click on the Saved file to see the LED lights on your keyboard go crazys and makes your own cool disco.

This trick u can apply on Windows XP, Windows Vista, Windows 7 and Windows 8 and found to be working properly.

You can disable the keyboard disco by starting Task Manager and ending the wscript.exe process.

No comments :

Post a Comment