F3::
Send {Numpad0}
Sleep, 40
Send {Numpad2}
Sleep, 40
Send {Numpad6}
Sleep, 40
Send {NumpadMult}
returnI need to make this not repeat when held down (just send once). Not sure how to do it.
Posted 15 April 2012 - 03:43 AM
F3::
Send {Numpad0}
Sleep, 40
Send {Numpad2}
Sleep, 40
Send {Numpad6}
Sleep, 40
Send {NumpadMult}
returnPosted 15 April 2012 - 04:32 AM
F3::
KeyWait, F3
Send {Numpad0}
Sleep, 40
Send {Numpad2}
Sleep, 40
Send {Numpad6}
Sleep, 40
Send {NumpadMult}
returnPosted 15 April 2012 - 04:55 AM
F3::
Send {Numpad0}
Sleep, 40
Send {Numpad2}
Sleep, 40
Send {Numpad6}
Sleep, 40
Send {NumpadMult}
KeyWait, F3
returnPlacing the KeyWait at the top requires the key to be released before continuing, while placing it at the bottom prevents it from executing more than once no matter how long the key is held. Posted 15 April 2012 - 10:13 AM