Hi,
Here is a snippet from my program that helps me automate Telnet sessions using PuTTY.
I would be releasing that app here, but for now, here is something useful from there:
#cs
Busy wait on window having windowTitle and belonging to process with PID processPID.
Time out timeoutSeconds in seconds
Returns -1 if timed out
#ce
Func BusyWaitOnWindow($processPID, $windowTitle, $timeoutSeconds)
Local $multiplierValue = 1000;
Local $timeOut = $timeoutSeconds;
Local $puttyHWND = -1;
While ((0 <> $timeOut) AND (-1 == $puttyHWND))
; Find out the program by finding programs that have this title
; check if the PID of that window matches the PID of the spawned process
; if so, we have found our window
; NOTE: Winwait will return (prematurely) if a window with same title exists
Winwait($windowTitle); If multiple instances of this script is spawned extremely fast (2 or more scripts per second), it gets hung here because the title changes to something unexpected (window title resembles log filename)
; I believe this has to do with the way ControlSendPlus.au3 modifies the global key state, thus effectively changing the sequence of commands sent versus what this script is supposed to generate
Local $matchingWindows = WinList($windowTitle)
If 0 == $matchingWindows[0][0] Then
MsgBox(0, "Details", "NO matching window titles! Will continue busy wait for " & $timeOut & " more seconds..", 1)
$timeOut -= 1;
Sleep($multiplierValue);
ContinueLoop
EndIf
For $dx = 1 to $matchingWindows[0][0]
If WinGetProcess($matchingWindows[$dx][1]) == $processPID Then
$puttyHWND = $matchingWindows[$dx][1];
ExitLoop
EndIf
Next
WEnd
If NOT IsHWnd($puttyHWND) Then
MsgBox(4096, "", $PuttyHWND & " - It's not a HWND")
$puttyHWND = -1;
EndIf
return $puttyHWND;
EndFunc