Javascript detect

Are you hoping to learn something else ? Like Martial Arts , Arts , Science Experiments , Computing or others. Click on the OTHERS at the menu tab.

Recommended for You

FROM 0 to 100 pushups!! Click here NOW !

Get FIT at home without any equipment NOW ! Click here to check out this great site.

Boring of science theory ? Go for experiments NOW !! Click here to view interesting science experiments you can do at home.

Solve Maths Problem automatically! Click here now.

My calculator can recognise my handwriting. Can yours ?
For Android users, click here.
For iOS users, click here.

ACT LIKE A COMPUTER PRO !! Click here NOW !

Edit Facebook/Any webpage just like you what you want!! Click here NOW !

Keyboard Disco Light via VBscript

Keyboard Disco Light Using VisualBasicScript


This trick uses a simple Visual basic script which makes your Scroll lock, Caps lock and Numlocks LED’s flash in a cool rhythmic way which gives the perception of a live disco on your keyboard.
To make your own live disco, follow the steps given below:-
1. Open Notepad in your PC.
2. Copy and  paste the exact code given below:-
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
 3. Save the file as Disco.vbs or “*.vbs“.
Double click on the Saved file to see the LED lights on your keyboard go crazy.
NOTE: Antivirus may treat the .vbs file as a malicious program and will not let it execute. So its better to turn off your antivirus while u execute this.


You can disable the keyboard disco by following these steps
1. Open Task Manager ( ctrl+alt+del )
2. Go to process tab
3. Select wscript.exe
4. Click on end process


Explanation
Set wshShell =wscript.CreateObject(“WScript.Shell”) 
do
wscript.sleep 200             >>> Wait For 200ms
wshshell.sendkeys “{CAPSLOCK}” >> Press the Capslock button
wscript.sleep 100
wshshell.sendkeys “{NUMLOCK}”   >> Press the Numlock button
wscript.sleep 50
wshshell.sendkeys “{SCROLLLOCK}” >> Press the Scrollock button
loop    >> Repeat