Hi, you will need proXML to load and parse the response xml from flickr. Take look at the loadElement method.
http://www.texone.org/proxml/xmlinout_method_loadelement.htm#
For example:
Code:
xmlInOut.loadElement(http://api.flickr.com/services/rest/?method=flickr.groups.pools.getPhotos&api_key=yourAPIkey&group_id=13813978%40N00);
loads a xml with the latest 100 photos from the processing group pool. You will get an xml like this:
Code:
<rsp stat="ok">
<photos page="1" pages="12" perpage="100" total="1134">
<photo id="443233908" owner="35468141602@N01" secret="823ceb045b" server="204" farm="1" title="Blend success" ispublic="1" isfriend="0" isfamily="0" ownername="flight404" dateadded="1175495869"/>
<photo id="443166441" owner="35468141602@N01" secret="2f9418f1dc" server="165" farm="1" title="Blend error (or is it?)" ispublic="1" isfriend="0" isfamily="0" ownername="flight404" dateadded="1175495858"/>
.
.
.
</photos>
</rsp>
With this response you can build pathes to the images which you can load simply calling loadImage(imagePath). Note that this will not work in applets. To load the flickr response and the images in applets you will need some php pages to get a response from your server, the only place from where applets can load data.
Take a look at the flickr api documentation and the way the image path is build.
http://www.flickr.com/services/api/
http://www.flickr.com/services/api/misc.urls.html