在AppleScript中,我试图从网站获取一条信息并将其弹出到对话框中

时间:2012-10-18 14:06:12

标签: applescript

更具体地说,这些信息:http://colejohnsoncreative.com/personal/ai/currentdegree.php

我想拉出那个号码(我所在城市的当前温度)并将其显示在对话框中,或让我的电脑说出来。我想要这样的事情:

“它是 currentDegree

并说当前的温度。

我被告知要使用 curl ,但我似乎无法找到太多关于此的信息。

1 个答案:

答案 0 :(得分:0)

您可以使用curl Unix命令下载您的网页:

property theURL : "http://colejohnsoncreative.com/personal/ai/currentdegree.php"

set theValue to do shell script "curl " & theURL
display dialog theValue buttons {"OK"} default button "OK"