What I'm trying to do is have my space bar (or any other key) rotate through four different outputs after being pressed before looping back to the first again, below is my awful code, any pointers?
Code: Select all
Loop
{Space::Send,1
if IsDone {
Space::Send,2
}
if IsDone {
Space::Send,3
}
if IsDone {
Space::Send,4
}
}