本文介绍了检查 WinList() 是否包含某个标题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用 WinList()列出所有打开的窗口代码>
在AutoIt中获取窗口标题和句柄.
I am listing all open windows using WinList()
to get window title and -handle in AutoIt.
我想检查结果数组是否包含特定标题.做这个的最好方式是什么?没有 WinList().Contains("TitleName")
或类似的东西.
I want to check if resulting array contains a specific title. What is the best way to do this? There is no WinList().Contains("TitleName")
or something like that.
Local $aList = WinList() ;Gets a list of Window Titles and IDs
推荐答案
好的,我现在知道了:
For $i = 1 To $aList[0][0]
If $aList[$i][0] = "Title/String you search for" Then
MsgBox($MB_SYSTEMMODAL, "", "MessageBox shows this text if title is in list.")
EndIf
Next
这篇关于检查 WinList() 是否包含某个标题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!