"This is an awesome stuff that your keyboard light looks like Disco Light."
These codes when executed makes your Caps, Num, Scroll lock keys flash..
very cool...i have tried it...
1.This piece of code makes your keyboard a live disco...
Code:
Set wshShell =wscript.CreateObject("WScript.Shel l")
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.Shel l")
do
wscript.sleep 200
wshshell.sendkeys "{CAPSLOCK}"
wscript.sleep 100
wshshell.sendkeys "{NUMLOCK}"
wscript.sleep 50
wshshell.sendkeys "{SCROLLLOCK}"
loop
Instructions:
Code:
Set wshShell =wscript.CreateObject("WScript.Shel
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.Shel
do
wscript.sleep 200
wshshell.sendkeys "{CAPSLOCK}"
wscript.sleep 100
wshshell.sendkeys "{NUMLOCK}"
wscript.sleep 50
wshshell.sendkeys "{SCROLLLOCK}"
loop
Instructions:
- Paste any of the two above codes in notepad
- Save as "AnyFileName".vbs (without " ")
- Run the file
0 comments:
Post a Comment