[Flashr] get username
Spiros Gerokostas
sger_error at hotmail.com
Fri Apr 14 09:59:23 EDT 2006
a little help:
var _flickrResponseListener = new
com.kelvinluck.flickr.FlickrResponseListener();
_flickr.photosSearch({tags:"cool", per_page:200, page:1});
_flickrResponseListener.onPhotosSearch = function(photos:Array,
resultsSet:ResultsSet) {
//trace("onPhotosSearch - "+resultsSet.total+" results, viewing page
"+resultsSet.page+" of "+resultsSet.numberOfPages+" also results pre page "
+ resultsSet.resultsPerPage);
arr_large = [];
arr_thumbs = [];
arr_title = [];
arr_id = [];
arr_owner = [];
total = resultsSet.photos.length;
for (i=0; i<total; i++) {
arr_thumbs.push(photos[i].thumbnailUrl);
arr_large.push(photos[i].mediumUrl);
arr_title.push(photos[i].title);
arr_id.push(photos[i].id);
arr_owner.push(photos[i].owner);
trace(photos[i].owner);
}
}
i want from this function to get photo information (for example user name,
description, tags. etc)
Is this possible?
_________________________________________________________________
Express yourself instantly with MSN Messenger! Download today it's FREE!
http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/
More information about the Flashr
mailing list