Add Disco Effect to the Keyboard Using Simple Notepad
You might be well-known of Notepad, the Windows Text-Editor. We only sometimes use it for some purpose so we scarcely know about some excellent and fun features of the Notepad. Notepad can be used to created different simple Applications so that you can entertainment or prank your friends . So Let's know this trick. This trick simply uses VB Script Code to make your Caps Lock, Num Lock and Scroll Lock Indicators(Light on the Keyboard) to glow like Disco Lights. It can be fun because if your friend sees there will be no application running but the lights will be flashing so it would be amazing.So here is the code you will be writing on Notepad and Save it as filename.vbs(filename can be replaced by any other names).Now Copyb the following code and then paste it in notepad.
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop
If you want to remove it Start Task manager and then End WSCRIPT.EXE. You will find that Num Lock's indicator is off and the other remaining two are still glowing.
Post a Comment