Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: perl library for controlling Windows GUI (like AutoIt)

by psychotic (Beadle)
on Dec 01, 2005 at 16:51 UTC ( [id://513339]=note: print w/replies, xml ) Need Help??


in reply to perl library for controlling Windows GUI (like AutoIt)

Most of the time you need not manipulate the application by automating mouse clicks. Script the usage of keyboard shortcuts for any functionality you like, use TAB to navigate to buttons, and ENTER respectivelly to activate them. This can be done by exploiting the Windows Scripting Host.
use strict; use Win32::OLE; my $wsh = new Win32::OLE 'WScript.Shell'; my $targetExactWindowName = "The exact window title of your applicatio +n"; # This brings it to the foreground $wsh->AppActivate( $target ); # Type some keys in the Window, here Ctr+P followed by Enter $wsh->SendKeys('^(p)'); $wsh->SendKeys('{ENTER}');
You can read more about sendkeys'() peculiarities here: Microsoft link. Of course, you should check if the relevent applicantion exposes some functionality via an OLE server. In that is the case, see if you can get hold of its "Scripting Guide".

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://513339]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (3)
As of 2024-04-25 19:30 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found