When i press "t", "ä,5,t" will be clicked by the script

Ask gaming related questions (AHK v1.1 and older)
hackwe
Posts: 1
Joined: 18 Aug 2022, 08:43

When i press "t", "ä,5,t" will be clicked by the script

Post by hackwe » 18 Aug 2022, 09:19

Hey, I'm new to AutoHotkey and I don't really know anything.
I'm looking for a simple script where when I press "t" on my keyboard, the "T","Ä" and "5" keys are pressed at the same time.
How do I create something like this?

User avatar
mikeyww
Posts: 26588
Joined: 09 Sep 2014, 18:38

Re: When i press "t", "ä,5,t" will be clicked by the script

Post by mikeyww » 18 Aug 2022, 10:04

Welcome to this AutoHotkey forum!

Code: Select all

$t::Send {t down}{ä down}5{ä up}{t up}

Post Reply

Return to “Gaming Help (v1)”