Applescript监听POST,并触发iTunes
我如何使用 Applescript 等待数据被发布到它,并在数据发布时触发 iTunes 暂停/播放。我已经弄清楚了 iTunes 的部分;但我该如何做另一部分呢?
谢谢!
How would I, using Applescript, wait for data to be POSTed to it, and when it is, trigger iTunes to pause / play. I've figured out the iTunes part; but how would I do the other part?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不相信您可以使用 AppleScript 作为 HTTP 处理程序,所以我不确定您是否可以做到这一点。您可以按照此处所述使用远程事件来向机器从另一台Mac,但你会如何从非Mac机器做到这一点我不确定。我建议使用另一个 Web 服务器程序并使用 AppleScript 从中调用 itunes,而不是尝试使用 AppleScript 直接接收 HTTP 调用。
I don't believe you can use AppleScript as an HTTP handler, so I'm not sure you can do this. You might be able to use Remote Events as described here to send a message to the machine from another Mac, but how you would do that from a non-Mac machine I'm not certain. I'd suggest using another web server program and calling out to itunes from it using AppleScript rather than trying to use AppleScript to directly receive HTTP calls.