Jump to content

Recommended Posts

Posted (edited)

Actually... if the title is always going to be "HyperVRE" and only the window text is different, he could use:

WinWait ("HyperVRE")
$sText = WinGetText ("HyperVRE")
If StringInStr ($sText, "10 Selected keywords") Then
    MsgBox (0, "", "Execute")
ElseIf StringInStr ($sText, "0 Selected keywords ") Then
    MsgBox (0, "", "Restart")
ElseIf StringInStr ($sText, "0 Selected keywords") Then
    MsgBox (0, "", "Restart")
ElseIf StringInStr ($sText, "Click OK to display") Then
    MsgBox (0, "", "Execute")
ElseIf StringInStr ($sText, "Unable to get keywor") Then
    MsgBox (0, "", "Restart")
EndIf

*Edit - Of course, you'd actually do whatever it is you intend to do at each of the places where there's a messagebox now.

Edited by exodius

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...