How can I manage a Windows graphics application with Perl?

I have a Win32 GUI. Is there a way to control GUI input as part of another process (an application embedded in Perl)? does the user have a scan system that I want to identify when the keys sent by the scan system check them if they are numbers, then suffix them with the \ n character and then send them to the GUI application?

+3
source share
2 answers

See Win32 :: GuiTest , which lets you send keystrokes and mouse clicks to any Windows application.

recorder .

+4
+2

Source: https://habr.com/ru/post/1723543/


All Articles