Log in

View Full Version : AHK script for using F1?



Rayve
10-08-2008, 09:14 AM
Hey,
What's the script for using F commands? (F1, F2, etc)

I just tried

~F1::
Keywait, F1
IfWinActive, World of Warcraft
{
ControlSend,,F1 ,ahk_id %wowid1%
ControlSend,,F1 ,ahk_id %wowid2%
Return
}

But it just sends it to both instances of WoW as if I'm only hitting 1.

Halp!

wowphreak
10-08-2008, 10:30 PM
Not sure what yer asking

try

#IfWinActive, World of Warcraft
~F1::
ControlSend,,F1, ahk_id %wowid1%
ControlSend,,F1, ahk_id %wowid2%
return