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 1: How 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!






































Visit Our Store »
Go Pro Today »




NM
The source.