Нате
Код:

HotKeySet("{Esc}", "_Exit") ; Выход по Esc
HotKeySet("+!^s", "_Go") ; Alt+Ctrl+Shift+s - старт нажатий
While 1
Sleep(1000)
WEnd
Func _Go()
For $i = 1 To 9
Send($i)
For $t = 1 To 50
Send("{SPACE}")
Sleep(500) ; pause 0.5sec
Next
Next
EndFunc
Func _Exit()
Exit
EndFunc