0

我一直使用这个命令计算窗口:

set windowsnumber to count windows

现在我需要计算包含特定字符串的窗口。

例如,如果一个进程打开了 5 个窗口(窗口“A”、“B”、“A”、“C”、“D”),我需要类似“计算标题中包含“A”的窗口”之类的东西,应该返回2 在这个例子中。

这对applescript可行吗?

4

1 回答 1

2

使用whose过滤器:

set windowsnumber to count (windows whose title contains "A")
于 2012-10-23T04:37:48.147 回答