spytek_98 Posted December 8, 2006 Posted December 8, 2006 Hi all, I hope some one can help me out. I want to listen to a particular process that is currently loaded in memory. The process that I want to listen to is a tv remote control device prgram that responds to button clicks on a remote. My challenge is some how listen to the button clicks and redirect them to another app. I want to be able to listen to the windows messages coming from the remote control program, something like this procedure TSomeThing_Control.WndProc(var Message: TMessage); begin if (Message.Msg >= WM_USER) and (Message.Msg < $8000) then .... ...; inherited; end; How would I write this in AuoIt script? I'm assuming i would use GUIRegisterMsg but I have no idea how to listen to message from a specific process? Thanks for your help D
Zedna Posted December 8, 2006 Posted December 8, 2006 If you couldn't achieve something in AutoIt then I recommend to use combination of AutoIt with another language (C++, Delphi,...). You can write DLL or commandline or hidden GUI "helper app" and use it from AutoIt ... Resources UDF ResourcesEx UDF AutoIt Forum Search
spytek_98 Posted December 9, 2006 Author Posted December 9, 2006 (edited) Is not that I couldn't do it in AutoIt, I want to know how it would be done in autoit?. That is how to Listen to window messages from a specific process (or app) that is currently in memory? Edited December 9, 2006 by spytek_98
spytek_98 Posted December 10, 2006 Author Posted December 10, 2006 Is not that I couldn't do it in AutoIt, I want to know how it would be done in autoit?. That is how to Listen to window messages from a specific process (or app) that is currently in memory?bump
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now