This was a comment i left for someone and realize it is a full blown question. It is to remap a game key from numpad4 to something i quickly can press.
I couldnt figure this out. It seems like it doesnt recognize shift (i tried using shift o and then O:: with no luck). Then i tried ::df:: (as in press them at the same time to trigger) but it looks like it triggers when i write df then a non alphabet character after it. And shift, ctrl, etc which i can hit with my pinky quickly doesnt count. How do i write a trigger i can hit quickly with my left hand? Currently my file is ::df::Send {Numpad4}

::df::...is an AutoHotkey hotstring. But it sounds like you want to make a hotkey like+o::Send {Numpad4}ord & f::Send {Numpad4}. – Bavi_H Aug 18 '10 at 1:15