Wednesday, September 29, 2010

CAPSLOCK blinking continuously

Yes,you can write a simple vbscript that can turnon/off your capslock such randomly that it seems to be blinking
Just copy the following code in notepad and save it as blink.vbs

 ***********************BLINK.VBS**************************
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
loop
***************************************************
Once the capslock is continously blinking,you can stop it by going to process tab under task manager,and killing "WSCRIPT.EXE".

HAPPY CODING

No comments:

Post a Comment