This looks preaty nice.
I don't know if you can feed directly the images found by google but on PHP you can load the page and get what you want...
ex.
http://images.google.fr/images?um=1&...tionscript.org
Then read this as a String (or XML) and parse the desired data using some regular expresion (or node selection)...
So one of the nodes (or part of the string) will look like this:
<a href="/imgres?imgurl=http://images.sixrevisions.com/2008/07/10-06_actionscript_dot_org.jpg&imgrefurl=http://sixrevisions.com/flashactionscript/flash_tutorial_websites/&usg=__9OBSVZhMegx2sPy-PakmDmgv1fU=&h=200&w=550&sz=28&hl= en&start=3&um=1&tbnid=K476T13K3YhQgM:& amp;tbnh=48&tbnw=133&prev=/images%3Fq%3Dactionscript.org%26um%3D1%26hl%3Den%2 6client%3Dfirefox-a%26rls%3Dorg.mozilla:fr

fficial"><img style="border: 1px solid ;" src="http://tbn2.google.com/images?q=tbn:K476T13K3YhQgM:http://images.sixrevisions.com/2008/07/10-06_actionscript_dot_org.jpg" width="133" height="48"></a>
So then that you found the desired information (
http://images.sixrevisions.com/2008/...pt_dot_org.jpg) you will build your own XML, JSON or string file to be send into flash.
Also you can load all this data directly on flash and parse everything when onData occurs.
Well this is just an idea...