如何告诉Safari在当前窗口的新标签页中打开网址?
这是Open URL in new Safari tab with AppleScript的副本,但其答案不再适用于当前版本的Safari(5.1 on 10.6.8)。选项卡已创建但为空:
tell front window of application "Safari"
make new tab with properties {URL:"http://www.stackoverflow.com"}
end tell
如果您创建一个新的“文档”而不是URL,但这会打开一个窗口。
对于它的价值,我将此报告为Apple的一个错误。但是解决方法会很棒。
答案 0 :(得分:5)
我这里没有最新的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