Hi all,

Am doing some dual-boxing - all going fine so far with no real problems.

Only minor thing however is with my AHK script for handling the 'r' key (I use r to force my slave (a hunter) to step backwards - need to be able to hold it so i can manouver(sp?) him)

I currently have;

Code:
~r::
IfWinActive, World of Warcraft
{
ControlSend, , {r Down}, ahk_id %wowid1%
ControlSend, , {r Down}, ahk_id %wowid2%
}
Return

~r Up::
IfWinActive, World of Warcraft
{
ControlSend, , {r Up}, ahk_id %wowid1%
ControlSend, , {r Up}, ahk_id %wowid2%
}
Return
However, this always gives a double hit in the active window (if I'm typing something, it always comes up with a 'rr' not 'r'). Any thoughts on how to get round this?

Thanks