Sunday 18 August 2013

Make Your Keyboard Lights Disco Light

This trick just makes your keyboard lights do disco.
The script I’m sharing with you, when executed makes your Caps, Num and Scroll Lock’s light flash in a cool rhythmic way!

1.This piece of code makes ur 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

>>>>
>>paste any of the two above codes in notepad

>>Save as xyz.vbs
>>Run the file
>>To stop, launch task manager and then under “Processes” end “wscript.exe”

Enjoy!!!!!

To run any script posted by me....you need to retype the inverted commas("") inside the script.
Thank you

0 comments :

Post a Comment