Page 1 of 1

I want to make a script that holds A button for a while, than changes to D, and return

Posted: 28 Nov 2021, 13:52
by Zlockiy
I want to make a script that holds A button for a while, than changes to D, and return

Re: I want to make a script that holds A button for a while, than changes to D, and return

Posted: 28 Nov 2021, 15:58
by mikeyww

Code: Select all

F3::
Loop, Parse, % "ad"
{ Send {%A_LoopField% down}
  Sleep, 500
  Send {%A_LoopField% up}
}
Return