Applescript从谷歌获取定义

时间:2010-10-17 16:30:18

标签: applescript

在谷歌中,你可以做“定义:猫”,它会给你一个定义列表。

有没有人知道如何使用google中的applescript获取单词的定义?

谢谢!

1 个答案:

答案 0 :(得分:1)

粗糙和翻滚,但它有效......

tell application "Safari"
    make new document with properties {URL:"http://www.google.com/search?q=define%3Acat"}
    set theDocument to document 1
    set theSource to source of theDocument -- result: source code for the page.
end tell

请注意,搜索字词可以在分隔符%3A之后添加到结尾处。从那里开始,你将不得不从页面中删除你想要的东西,但即使是最好的语言也是如此。