Method WinSetTitle

AutoIt X

Method Reference


WinSetTitle

Changes the title of a window

WinSetTitle "title", "text", "newtitle"

Parameters

title The title of the window to change.
text The text of the window to change.
newtitle The new title to give to the window.

Return Value

None.

Remarks

If multiple windows match the criteria the title of most recently active window is changed.

Related

WinGetTitle, WinTitleMatchMode (Option)

Example


Set oAutoIt = WScript.CreateObject("AutoItX3.Control")
oAutoIt.WinSetTitle "Untitled - ", "", "My New Notepad"