Do you know how send key in a background window with autoit ?
I try WinActivate("4Story") but I can't do enything else...
I try WinActivate("4Story") but I can't do enything else...
//Example from autoitscript.com:
ControlSend("[CLASS:Notepad]", "", "Edit1", "This is a line of text in the notepad window")
//Method 1:
ControlSend("[CLASS:Notepad]", "", "Edit1", "Test123")
//Method 2:
ControlSend("", "Untitled - Notepad", "Edit1", "Test123")
//Maybe also:
ControlSend("[CLASS:Notepad]", "Untitled - Notepad", "Edit1", "Test123")