2010-06-03, 08:46:47
I use autohotkey (http://www.autohotkey.com/download/) to change the hotkeys for the items to d, f and a. Auto Hotkey sends the corresponding Num-Key-Event without the original key when triggered. This influences the chatting a little bit, since some letters will be replaced by numbers which might be confusing. But the additional speed in triggering the items is worth this chatting problem.
Here is my script I use:
regread, war, HKEY_CURRENT_USER, Software\Blizzard Entertainment\Warcraft III, ProgramX
menu, tray, icon, %war%, 1, 1
;; Inventory
#ifWinActive ahk_class Warcraft III
d::send, {Numpad7}
f::send, {Numpad8}
a::send, {Numpad4}
return
have fun, haz0r =)

Here is my script I use:
regread, war, HKEY_CURRENT_USER, Software\Blizzard Entertainment\Warcraft III, ProgramX
menu, tray, icon, %war%, 1, 1
;; Inventory
#ifWinActive ahk_class Warcraft III
d::send, {Numpad7}
f::send, {Numpad8}
a::send, {Numpad4}
return
have fun, haz0r =)
"That's the way it is with any powerful tool: There's always more to learn, and there are always better ways to do what you've done before." D. E. Knuth