Advertisement
Guest User

AHK WASD remap

a guest
Feb 1st, 2023
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
  2. ; #Warn  ; Enable warnings to assist with detecting common errors.
  3. SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
  4. SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
  5.  
  6. ; This makes the script only active if the Secret Agent Barbie window is active, so it won't affect other applications
  7. #IfWinActive, SecretAgent
  8.  
  9. ; WASD = arrow keys
  10. w::Up
  11. a::Left
  12. s::Down
  13. d::Right
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement