Ill help you get started...you'll have to look up the following commands in the help file to modify this to your need. but what i think you need is...
Code:
{numlock}:: ; Hotkey; NUMLOCK executes the script
loop, 1000 ; Loop everything inside {} 1000 times
{
Send, abc ; sends the specifyed keystrokes. In this case 'abc'
sleep, 3000 ; pause 3s (3000 miliseconds = 3s ??idk.. bad in math)
}
loop, 1000
{
(keyboard command2) ; whatever your second keyboard commands are
}
return
PS i am also a next to nothing programmer, but AHK is a great place to start, it has already done wonders for me...just start reading the help files, they are really easy to understand with the examples given, and try to start your script. Post back with your code or what you have so far, and im sure people in this community will help you along the way...good luck!