Wednesday 31 July 2013

Keyboard Light Looks Like Disco Light


"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.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




Instructions:
  • Paste any of the two above codes in notepad
  • Save as "AnyFileName".vbs (without " ")
  • Run the file
N:B---->To stop, launch task manager & then under "Processes" end wscript.exe

0 comments:

Post a Comment