Let The Light Flash On Your KeyBoard
Posted by Gautam Aggarwal on Saturday, July 05, 2008
These codes when executed makes your Caps, Num, Scroll lock keys flash..
very kewlll...i have tried it...
Instructions:
*paste any of the codes in notepad
*Save as AnyFileName.vbs
*Run the file
*to stop, launch task manager and then under "Processes", end wscript.exe
1.This piece of code makes your keyboard a live disco...
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....
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
That's it for today's post, feel free to try and post comments.
Subscribe to:
Post Comments (Atom)
1 comments:
Wow .. Gautam you rock seriously
Post a Comment