单击HTML链接时如何执行Apple Script?

时间:2015-02-12 02:37:48

标签: javascript html macos applescript

我试图在HTML链接中嵌入苹果脚本,但它所做的只是带有配置文件脚本的Apple脚本编辑器应用程序。

点击链接后我希望执行 - 所以我不必按播放按钮。

有人可以帮助我快速解决这个问题吗?

link.html

<a href = " 

applescript://com.apple.scripteditor?
action=new&script=

tell application %22Safari%22%0D%09
make new document with properties {URL:%22https://www.google.com%22}%0D%09 

end tell "> 

Click me to run the script ! 

</a>

结果:

enter image description here

1 个答案:

答案 0 :(得分:1)

您会找到问题的答案here

您还需要安装RCDefaults首选项窗格。

你必须使用完整的协议,用'?'以及所有这些,以使您自己的协议按预期工作。对于那种请求,您必须遵循该方案或任何被调用的方案。 MaxOsXAutomation.com上的linktrigger演示在上个月内为我工作。