gpt4 book ai didi

applescript - 使用applescript关闭多个Safari窗口

转载 作者:行者123 更新时间:2023-11-30 23:59:25 24 4
gpt4 key购买 nike

运行我的一些脚本后,我碰巧有一堆带有“无标题”窗口的 Safari 窗口。

我想出了以下代码来关闭所有名称为“Unitlted”的窗口,但它并没有关闭所有带有错误消息的窗口->“Safari 出现错误:无法获取每个窗口的第 9 项。无效指数。”我不得不多次运行才能关闭所有窗口。

tell application "Safari"
repeat with w in windows
if name of w is "Untitled" then
tell w to close
end if
end repeat
end tell

可能有什么问题?

最佳答案

使用 AppleScript filter reference form :

tell application "Safari"
close (every window whose name is "Untitled")
end tell

关于applescript - 使用applescript关闭多个Safari窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3535957/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com