使用AutoIt v3啓動火狐,下面的腳本應該啓動Firefox網頁瀏覽器窗口: Opt("WinTitleMatchMode", 4)
$winMatchFirefox = "[CLASS:MozillaWindowClass]"
If WinExists($winMatchFirefox) Then
Local $hWnd = WinActivate($winMatchFire
我使用WinList()列出所有打開的窗口,以獲取AutoIt中的窗口標題和句柄。 我想檢查結果數組是否包含特定標題。做這個的最好方式是什麼?沒有WinList().Contains("TitleName")或類似的東西。 Local $aList = WinList() ;Gets a list of Window Titles and IDs