3 Simple Ways to
Share What You Make

With Instructables you can share what you make with the world — and tap into an ever-growing community of creative experts.

PhotosPhotos

Share one or more photos of a project, recipe, or whatever you've made, quickly and easily.

Step by StepStep-By-Step

Share your step-by-step photos with text instructions of what you made so others can do it too!

VideoVideo

Share your how-to video. You'll need your embed code from a video site such as YouTube.

keyboard led loader

keyboard led loader
if you have a keyboard like mine this will work it might work on some laptops but it uses them LEDs above your number pad ... the numlock capslock and scrolllock LEDs....

The vbs will use the sendkeys command to make this work...

this vbs will make them go in a row like it's loading .. if there in a different order on your keyboard you can change order in vbs .. its not very hard.

Please enjoy and comment.
 
Remove these adsRemove these ads by Signing Up
 

Step 1How it works

how it works
all this code does is:

make object - for later
sleep
send keys - numlock
sleep
send keys - caps lock

the script in vbs:

set shellobj = CreateObject("WScript.Shell")
wscript.sleep 1000
shellobj.sendkeys "{NUMLOCK}"
wscript.sleep 300
shellobj.sendkeys "{CAPSLOCK}"
wscript.sleep 300
shellobj.sendkeys "{SCROLLLOCK}"
wscript.sleep 300
shellobj.sendkeys "{SCROLLLOCK}"
shellobj.sendkeys "{CAPSLOCK}"
shellobj.sendkeys "{NUMLOCK}"

and so on ...
yo just copy this and paste number of times you want it to do it.
its really not a very hard script!
« Previous StepDownload PDFView All StepsNext Step »
11 comments
Dec 22, 2008. 10:53 AMadmin says:
This project looks awesome but there isn't enough documentation of you actually making it to be a full Instructable. There are two things which you could do. 1) If you happen to have images of you making your project you can create some more steps, add those additional photos into your Instructable and then republish your Instructable. 2) If you don't have any more pictures of you working on your project, that's ok too. That just means that your project is better suited to be submitted as a slideshow. Your images are already in your library, and you can use the same text that you have already written for your Instructable so it should only take a few minutes to create your slideshow and show the world what you made! Thanks for your submission and let me know if you have any questions along the way.
Apr 21, 2012. 5:08 PMaccount3r2 says:
I made one of these a long time ago but my HDD failed and I forgot the code... Nice Instructable!
Feb 24, 2011. 10:58 AMNatNoBrains says:
That's pretty cool, but I have a function lock light on mine? I tried doing a "{FUNCTIONLOCK}" but it didn't work!
NM
Apr 2, 2011. 11:45 PMNatNoBrains says:
Yeah, beacuse on my PC keyboard it has a '1' for Num Lock, an 'A' for Caps Lock, an up facing arrow for Shift and an 'F' for Function Lock.
Feb 18, 2010. 11:03 AMShadowOfGhost says:
couldn't you just make a loop?
Jul 14, 2009. 3:49 PMKaelessin says:
you can use a loop to save some typing and allow it to last much longer a good option would be to set this up as a function with parameters for speed and duration (set loop length to duration and sleep to speed). Then you could call this any time a program you write is loading something!
May 23, 2009. 8:51 PMXOIIO says:
Nice, Just Need to make them stay on longer.
Mar 6, 2009. 5:55 PMLance Mt. says:
Nice, already know enough to do this but i never thought about using capslock and all that.. - Sweet ible, Chris

Pro

Get More Out of Instructables

Already have an Account?

close

All Steps Viewing
View all steps of an Instructable on the same page when you're a Pro Member.

Upgrade to Pro today!
12
Followers
8
Author:iRule