Tricks Warehouse

Various Tricks by Rajesh Rolen

To make your keyboard lights dance

by using this code your keyboard's lights (num lock, caps lock , scroll lock) will be
flash.

1.This piece of code makes ur keyboard a live disco…

Code:

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


=======================================================

2.This one makes it looks like a chain of light….

Code:
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
Instrcuctions:
*paste any of the two above codes in notepad
*Save as "TricksWareHouse.vbs" including single quotes
*Run the file
*to stop, launch task manager and then under “Processes” end wscript.exe

0 comments:

Post a Comment