hey guys, i skimmed about half the first 5 pages, i have practically no prog experience ( batch files and playing around with WMI and WMIC for networking stuff) doubt you even call that prog but anyways
i been trying to figure out this problem as well, the keyboard strokes aren't going to the client even tho the macro is running, id be happy even if i did have the window open and active if it would just register them
after reading this tutorial
http://www.autohotkey.com/docs/misc/SendMessage.htm
by Rajat
i d/led winspector and started playing around with it
i tried looking for what the tut was pointing out, the wm_command but had no luck playing with those
What i did find was i found where the keystrokes seem to be registering and being defined which key you pressed which i had difficulty identifying before
[winspector shows]
WM_CHAR
wParam: hex
IParam: hex
when i looked that up it turns up that that command pops up after the
[winspector shows]
WM_KEYDOWN
Virtual Key: blah
the wm_keydown means this key was pressed
and the wm_char is how the game interprets it or something???
so it looks like all the keys get assigned a virtual key which a designated value, i found when i presssed 3 it shown this
WM_KEYDOWN
Virtual Key: Unkown key (51)
WM_CHAR
wParam: 0x00000033
IParam: 0x00040001
and when i pressed space bar it shown this
WM_KEYDOWN
Virtual Key: VK_SPACE
WM_CHAR
wParam: 0x00000020
IParam: 0x00390001
does anyone have a clue if im even going in the right direction?
Thanks