我需要一些非常简单的AppleScript帮助。我需要它在mac上用url参数打开一个本地URL。
set str to "open -a 'Firefox' file:///Users/bob/Desktop/someFolder/index.html?val=28"
do shell script str
我找不到用参数打开网页的方法,它总是打开.html。
有人可以帮忙吗?感谢
答案 0 :(得分:1)
您可能希望使用可编写脚本的Safari:
tell application "Safari"
make new document with properties {URL:"http://stackoverflow.com/questions/7710803/open-a-local-html-file-with-url-params-through-applescript?bob=bob"}
end tell
open
命令是一个通用函数,用于打开任何程序的任何文件。它只会查找文件位置并忽略其余字符串。