我正在尝试更改窗口的内容。我的代码结尾如下:
...
ControlFocus, SysListView321, A
ControlGet, CtrlText, List,, SysListView321, A
; MsgBox %CtrlText% ; This shows the correct contents, as expected
我现在想更改上面的内容。使用 Window Spy,我确定:
ClassNN = SysListView321
Text = List1
我尝试了以下方法(一次一个):
ControlSetText, SysListView321, New Text Here, A
ControlSetText, List1, New Text Here, A
两者都没有任何效果。
我错过了什么?