class 关注 AutoIT 中的 window

Focusing on window in AutoIT by class

我想关注 class 32770 的 window,所以我使用:

ControlFocus("[CLASS:#32770]","","Edit1")
ControlSetText("[CLASS:#32770]","","Edit1",$CmdLine[1])
ControlClick("[CLASS:#32770]","","Button1")

但它不起作用。怎么了?

我想让这个脚本适用于 Windows 的不同语言版本,这就是为什么我没有使用明确的标题,而是尝试使用 class。最终解决方案是使用@MUILang。