Jump to content

Recommended Posts

Posted

Shortened version

$i = 0

Do

Send("{DOWN" & $i & "}")

$i = $i + 1

Until $i = 3

Need to send down key +1 at the start of the loop

Posted (edited)

$i = 1
Do
    For $j = 1 to $i
        Send("{DOWN}")
    Next
    $i += 1
Until $i = 4

This works aswell

$i = 1
Do
    $sSends = '{DOWN '&$i&'}'
    Send($sSends)
    $i += 1
Until $i = 4
Edited by ofLight

There is always a butthead in the crowd, no matter how hard one tries to keep them out.......Volly

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...