Hi,
I'm trying to build a simple script to shutdown my computer after doing a long copy files task using Total Commander.
My script...
Opt("WinTitleMatchMode", 3) ;1=start, 2=subStr, 3=exact, 4=advanced, -1 to -4=Nocase
Opt("WinSearchChildren", 1) ;0=no, 1=search children also
Opt("TrayIconDebug", 1)
While WinExists("Total Commander")
Sleep(5000)
WEnd
$ret = MsgBox(1,"Warning","Windows will shutdown in 20 seconds",20)
If $ret = 1 Or $ret 0 -1 Then
Shutdown(8 + 4)
EndIf
Now my problem. When Total Commander is running the Windows title is "Total Commander 7.04a - NOT REGISTERED" (i'm running the trial version), after start the copy operation it opens a new windows with the title "Total Commander".
Running the above code the script pauses when i have only the main TC window open and without the "Total Commander" window.
From the help file with WinTitleMatchMode = 3:
Is this a bug on the title match or i'm doing something wrong.
Tanks for any help.