I've been trying out AutoHotkey so far but again they skip some steps, like explaining where exactly scripts needs to be saved.

So I go to c:/.../AutoHotkey/Extras/Scripts. I rightclick to make a new document, an .ahk file (it shows up in the menu so I click on it). Then I edit script and enter the following:

Code:
WinGet, wowid, List, World of Warcraft

~A:: 
KeyWait, A, D
#IfWinActive, World of Warcraft 
{
ControlSend,, A, ahk_id %wowid1% 
ControlSend,, A, ahk_id %wowid2% 
}
Return
I save the file, and close it. AutoHotkey is still running as small icon near the clock.

Then I go to my healer slave, and put on "A" a macro to target my hunter (which works btw) and heal. Keybinded to "A".

I go to my Hunter, but no matter how much I press "A", the healer isn't doing anything.


What went wrong?