HwndEx = Plugin.Window.Search("来自网页的消息")
MyArray = Split(HwndEx, "|")
a=CLng(MyArray(0)) //MyArray(0)是字符串要转换成整数才能用 Call Plugin.Window.Close(a)
HwndEx = Plugin.Window.Search("来自网页的消息")
MyArray = Split(HwndEx, "|")
For i = 0 to UBound(MyArray)
Call Plugin.Window.Close(MyArray(i))
Next