Quote: "Autohotkey has the functionality, but it lacks the ability to set up a lot of conditions like AGK. I'm thinking of trying to mesh the two at this point."
is it a game... the sender app??
if not then AutoIT is probably a better solution it has "SendKeys" functionality built in, a small plugin for AppGameKit exposing SendMessage would only take 10 mins to write if that
infact you can expose a few functions to achieve what you want using my
Library Plugin
something like this should work
if Library.Open(1, "User32.dll")
SendMessage = Library.GetFunction(1, "SendMessage")
Library.PutIntParam(--)// HWND
Library.PutIntParam(--)// uMsg
Library.PutIntParam(--)// wParam
Library.PutIntParam(--)// lParam
Library.CallFunction(SendMessage )
Library.ClearParams()
Library.Close(1)
endif