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 ads by
Signing UpStep 1How it works
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 Step | Download PDFView All Steps | Next Step » |














![P221208_00.21[01].JPG](http://img.instructables.com/files/deriv/F99/QXTN/FOVWMANB/F99QXTNFOVWMANB.SQUARE.jpg)



























NM
The source.