Search the Community
Showing results for tags 'winactive'.
-
I am capturing data from a web page as soon as it opens. The problem is I am running a dual screen setup and the script don't capture the data when the window is opened up in the non default monitor. On the default monitor it works fine. Func Monitor() Local $hTimer = TimerInit() Do $fDiff = TimerDiff($hTimer) Until WinActive("ActivityDetail - Internet Explorer") Or $fDiff >= 5000 ; Only sees window on default m
-
Hello . How to do that $regexp = starts from "abcdef" and after this could be anything in name WinActivate($regexp)
-
I want to check if the cmd.exe + window of it is running, if it is running I want to put the window to the foreground, but somehow this does not work: Local $sCommandlinePath = "C:\Windows\system32\cmd.exe" RunCm() Func RunCm() If FileExists($sCommandlinePath) Then If ProcessExists("cmd.exe") Then If WinExists("[CLASS:ConsoleWindowClass]") And WinActive("[CLASS:ConsoleWindowClass]") Then Local $hCmdWindow = WinGetHandle("[CLASS:ConsoleWindowClass]") WinSetOnTop($hCmdWindow, "&q
-
Hi guys, this is my script: $File1 = @WorkingDir & "\Test1.txt" $File2 = @WorkingDir & "\Test2.txt" $FileNameEstension = StringTrimLeft($File2, StringInStr($File2, "\", 0, -1)) $FileNameOnly = StringTrimRight($FileNameEstension, 4) ClipPut(FileRead($File1)) Start($File2) func Start($File2) If Not FileExists($File2) Then Return 0 Return Run(@ComSpec & " /c " & "start " & FileGetShortName($File2),"",@SW_HIDE) endfunc If WinActive($FileNameOnly & " - Notepad") Then Send("^v") Send("^s") WinClose($FileNameOnly & " - Notepad") First, would know if you can merge t