Close
Showing results 1 to 7 of 7

Thread: Help Please AHK

Hybrid View

  1. #1

    Default

    Quote Originally Posted by jsilva191 View Post
    ...I tried this script included and used F1 as the key. works fine again.
    Still Baffled as to why no letters work anymore.

    ~F1::
    IfWinActive, World of Warcraft
    {
    ControlSend, , {F1 Down}, ahk_id %wowid1%
    ControlSend, , {F1 Down}, ahk_id %wowid2%
    ControlSend, , {F1 Down}, ahk_id %wowid3%
    ControlSend, , {F1 Down}, ahk_id %wowid4%
    ControlSend, , {F1 Down}, ahk_id %wowid5%
    }
    Return

    ~F1 Up::
    IfWinActive, World of Warcraft
    {
    ControlSend, , {F1 Up}, ahk_id %wowid1%
    ControlSend, , {F1 Up}, ahk_id %wowid2%
    ControlSend, , {F1 Up}, ahk_id %wowid3%
    ControlSend, , {F1 Up}, ahk_id %wowid4%
    ControlSend, , {F1 Up}, ahk_id %wowid5%
    }
    Return
    Have you tried to use the exactly same code you've used for F1 also with a letter? In your script further up you've broadcasted the letters without splitting into pushing ("down") and releasing ("down") the key. Had a similar problem and the solution in my case was that i've just had to change the broadcasting into this "up/down"-setup. Unfortunately there are not only different "parameters" you can broadcast in AHK, but you can also use different commands... which make it a bit confusing to start with.
    Last edited by eauxfolles : 08-22-2011 at 05:29 PM

Posting Rules

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •