Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: How To Read Win32 Window Title Text

by technojosh (Priest)
on Nov 12, 2007 at 22:05 UTC ( [id://650394]=note: print w/replies, xml ) Need Help??


in reply to How To Read Win32 Window Title Text

Win32::GuiTest should take care of that no problem.

Here's a working example...

use Win32; use Win32::GuiTest qw(:ALL); my $searchString = 'Internet Explorer'; for (FindWindowLike()) { my $title = GetWindowText($_); next unless ( $title ); if( $title =~ /$searchString/ ) { print "$title\n"; } }

Update: Added code example that applies to Internet Explorer

Replies are listed 'Best First'.
Re^2: How To Read Win32 Window Title Text
by roho (Bishop) on Nov 12, 2007 at 22:37 UTC
    Thank you very much. That was exactly what I was looking for.

    "Its not how hard you work, its how much you get done."

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (5)
As of 2024-04-19 07:12 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found