AutoHotKey

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • WillTalbot
    FFR Player
    • Jul 2006
    • 579

    #1

    AutoHotKey

    I want to map (a)(s)(w)(d) and (l)((p)(') as (left)(down)(up)(right) but the problem is that (w) is already mapped as (down). How do I map aswd and l;p' and left, down, up, right in that order so that they both act like arrow pads?
  • FluorescentArmy
    Forum User
    • Nov 2005
    • 1754

    #2
    Re: AutoHotKey

    a::Send {left}
    s::Send {down}
    k::Send {up}
    l::Send {right}

    l::Send {left}
    :::Send {down}
    p::Send {up}
    '::Send {right}

    Comment

    • WillTalbot
      FFR Player
      • Jul 2006
      • 579

      #3
      Re: AutoHotKey

      Thanks

      Comment

      Working...