Wednesday 11 June 2014

Make your Keyboard Lights go Dancing - Disco Lights Effect

If you have a Backlit Keyboard (as shown in image below) then this trick is for you. You can make your keyboard lights go dancing using this trick. Lights will Switch Off and On and create disco light effect. Basicly we have to create a Visual Basic Script (.VBS Script) which will give commands to Keyboard lights to Switch On & Off in a dedicated time.
Add Disco Lights effect to your Keyboard Light
Source: images.google.com

Tutorial:

  1. Open Notepad and Copy the code below into it.
    Set wshShell =wscript.CreateObject("WScript.Shell")
    do
    wscript.sleep 100
    wshshell.sendkeys "{CAPSLOCK}"
    wshshell.sendkeys "{NUMLOCK}"
    wshshell.sendkeys "{SCROLLLOCK}"
    loop
      NOTE: You can change the value '100' to change the speed of lights going on and off.
                   For example: Changing to 50 will decrease the time.

                                  Make your Keyboard Lights go Dancing - Disco Lights Effect
      
  2. Now click on File > Save As.

                                   Make your Keyboard Lights go Dancing - Disco Lights Effect
     
  3. Save the file as 'Disco.vbs' [Name can be anything but .vbs is must]

                                    Make your Keyboard Lights go Dancing - Disco Lights Effect
     
  4. Open the recently saved file and Double click to open it & See your Keyboard lights go dancing.

How to stop this Script:

If you need any help then feel free to comment below.

No comments:

Post a Comment