0
votes

I'm pretty new to autohotkey and cant figure out how to make it so that pressing the ~ key causes my left mouse button, shift, and W to be held at the same time until the ~ key is pressed again.

1
This guide has your answer. autohotkey.com/boards/viewtopic.php?t=11952DHerls

1 Answers

0
votes

See if this helps:

+`:: 
Toggle := !Toggle 
If Toggle
  {
     Send {LButton Down} {w Down} {Shift Down}
  }
 else 
   Send {LButton Up} {w Up} {Shift Up} 
 return