Answers:
这个脚本会按你的要求做。它抓取当前Safari选项卡的URL和名称,并在桌面上创建一个weblink文件。它使用页面名称来命名文件。如果您需要帮助解析文件名的更好选项,请询问。
try -- will just silently quit if front window is not valid
tell application "Safari"
set theURL to URL of current tab of window 1
set theName to name of current tab of window 1
end tell
tell application "Finder"
make new internet location file at desktop to ¬
theURL with properties {name:theName}
end tell
end try
window 1
指的是没有URL的窗口。这可能永远不会出现,但你永远不知道。