我正在尝试为 textwrangler 编写一个 Applescript,它将在 Chrome 中打开活动文档。这是脚本目前的样子:
tell application "TextWrangler" to set theFile to file of document 1
tell application "Finder" to open theFile using (path to application "Google Chrome")
假设我正在处理一个绝对路径为“Applications/MAMP/www/index.php”的文件。该脚本将在浏览器中以“file://localhost/Applications/MAMP/www/index.php”的形式打开该文件,显示 php 代码。
而不是这个,我需要一个脚本,将 'file://localhost/Applications/MAMP/' 替换为 'http://localhost/' 显示实际站点。
我尝试了一堆我在网上找到的东西,但我对 Applescript 的经验太少,无法实现这一点。