; Download software https://www.autoitscript.com/site/autoit/downloads/ ; run this script from SciTE script editor ; This is the script, it will find the microsoft teams window and the chat box title, typing automatically ; Wait for 5 seconds to open Microsoft Teams, click on the chat window and typing message field, this need to be done manually. Sleep(5000) While True ; Loop indefinitely ; Wait for the Microsoft Teams window to exist ;MsgBox(0, "Window Handle","debug -1") ;use the AutoIt v3 Window Info to capture the microsoft teams chat window title, for example, capture the chat box title is "John Smith (ABC) (You) | Microsoft Teams" WinWait("John Smith (ABC) (You) | Microsoft Teams") ; Activate the Microsoft Teams window using its title and a more specific WinTitleMatchMode WinActivate("John Smith (ABC) (You) | Microsoft Teams") ; MsgBox(0, "Window Handle","debug0") ; Wait for the window to become active W...