更具体地说,这些信息:http://colejohnsoncreative.com/personal/ai/currentdegree.php
我想拉出那个号码(我所在城市的当前温度)并将其显示在对话框中,或让我的电脑说出来。我想要这样的事情:
说“它是 currentDegree ”
并说当前的温度。
我被告知要使用 curl ,但我似乎无法找到太多关于此的信息。
答案 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"