Quote:
Originally Posted by cheatftw
anyone can make his own rename with simple autoIT script like:
WinWaitActive("Element Client")
WinSetTitle("Element Client", "", "Super_Buber_Title")
|
lol..lets try again. The client is all chinese characters if i remember correctly.
And Using The code piece you posted above wouldn't work properly
So the correct process would be..
Code:
$wList = WinList()
$PID = ProcessExists("elementclient.exe")
For $i = 1 to $wList[0][0]
$WPID = WinGetProcess($wList[$i][0])
If $WPID = $PID then
WinSetTitle($wList[$i][0],"",<New Title Here>)
EndIf
Next