2012-10-01 100 views

回答

11

當然,命令行實用程序捲曲是一種方式。 Applescripts可以使用命令行工具和「do shell script」命令。所以試試這個...

set theURL to "http://my.server.com?type=Show&name=Big+Bang+Theory" 
do shell script "curl " & quoted form of theURL 

以上將返回頁面結果爲applescript。也許你寧願只打開鏈接中的默認瀏覽器...

set theURL to "http://my.server.com?type=Show&name=Big+Bang+Theory" 
open location theURL 

所以你挑!

+0

非常感謝,我認爲我可以從這個工作。那麼,在第一個例子中,我的php文件輸出將返回到applescript?我怎樣才能使用返回的輸出? – andeersg