sub Guardian { my ($this) = @_; my $i = 0; while (1) { {#find any message-box with class #32770 [usually infos and errors] and press it's child OK button @err_window = FindWindowLike(undef, "", "#32770"); foreach (@err_window) { SetForegroundWindow($_); SetActiveWindow($_); PushChildButton( $err_window[$i], "OK", 0.25 ); PushChildButton( $err_window[$i], "Abort", 0.25 ); } sleep 1; } }