
7
views
views
On some PCs, you can make the keyboard LED lights flash, giving the appearance that the keys are "dancing". It's a fun trick that might work on your computer provided it has the LED lights and can handle the programming suggested here.
Starting the LED flashes
On your PC, open Notepad.
Type the following code into Notepad: Set wshShell =wscript.CreateObject("WScript.Shell")dowscript.sleep 100wshshell.sendkeys "{CAPSLOCK}"wshshell.sendkeys "{NUMLOCK}"wshshell.sendkeys "{SCROLLLOCK}"loop.
Save the file as: led.vbs Be sure to save it as ".vbs".
Open the led.vbs file. You should see your keyboard caps lock, num lock, and scroll lock are now blinking!
Disabling the LED flashes
Open the Task Manager.
Go to the Process tab.
Select wpscript.exe. If you can't find it, you may have to scroll.
Once selected, click End Process.
Comments
0 comment