ScionOfWar wrote:
The typical 'SendInput {Up}'...
...SendInput is not "typical"...it's a faster/more optimized way to send, after everything's already working...when trying to get a Flash game to respond to keys I would use Send 1st & if that works change it to SendInput, then if that don't work, go back to Send...also you need to make sure the Flash game has focus 1st (click it) or nothing will work...manually click the Flash game, then try both of these...
Code:
F1::
Send, {Up}
Send, {Right}
return
F2::
s=319
Send, {Up down}
Sleep, %s%
Send, {Up up}
Send, {Right down}
Sleep, %s%
Send, {Right up}
return
...lower 319 until it don't work (try 219, 119, 19), then raise it again...