Hi valuater!
can you explain me this portion of script:
If $U_ans = 6 Then
WinMinimizeAll()
$PID = Run('C:\Program Files\Internet Explorer\iexplore.exe "' & $D_P & '"', "", @SW_SHOW)
WinWaitActive("")
Local $Handle = WinGetHandle($PID), $sHTML = "", $loop = 0
While ProcessExists($PID)
Sleep(3000)
If ProcessExists($PID) = 0 Then ExitLoop
If Not StringInStr(WinGetTitle($Handle), "PayPal") And Not StringInStr(WinGetTitle($Handle), "DreamHost") Then
If $loop = 5 Then ExitLoop
$loop = $loop + 1
Else
$loop = 0
EndIf
If StringInStr(WinGetTitle($Handle), "Thank you for your payment") Then Return 1
WEnd
ProcessClose($PID)
EndIf
what's this $HTML var doing?? Is it a mistake?
and can you explain me the utility of $loop please
thank"s