编写 Safari 5.1 脚本来打开选项卡

发布于 2024-11-27 16:02:20 字数 670 浏览 0 评论 0原文

可能的重复:
使用 AppleScript 在新的 Safari 选项卡中打开 URL

我该如何判断Safari 在当前窗口的新选项卡中打开 URL?

这是使用 AppleScript 在新 Safari 选项卡中打开 URL,但是它的答案不再适用于当前版本的 Safari(10.6.8 上的 5.1)。该选项卡已创建但为空:

tell front window of application "Safari"
make new tab with properties {URL:"http://www.stackoverflow.com"}
end tell

如果您创建一个新的“文档”,则会采用 URL,但这会打开一个窗口。

不管怎样,我将此作为一个错误报告给了苹果。但解决方法会很棒。

Possible Duplicate:
Open URL in new Safari tab with AppleScript

How do I tell Safari to open a URL in a new tab of the current window?

This is a duplicate of Open URL in new Safari tab with AppleScript, however its answer no longer works with the current version of Safari (5.1 on 10.6.8). The tab is created but empty:

tell front window of application "Safari"
make new tab with properties {URL:"http://www.stackoverflow.com"}
end tell

If you make a new "document" instead the URL is honored, but this opens a window.

For what it's worth, I reported this as a bug to Apple. But a workaround would be great.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

绻影浮沉 2024-12-04 16:02:20

我这里没有最新的 Safari,但这可能有用

tell front window of application "Safari"
    set newTab to make new tab
    set the URL of newTab to "http://www.stackoverflow.com"
    set the current tab to newTab
end tell

I don't have the latest Safari here, but this might work

tell front window of application "Safari"
    set newTab to make new tab
    set the URL of newTab to "http://www.stackoverflow.com"
    set the current tab to newTab
end tell
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文