Hi all i’m trying to create a little area on a site that will display both the amount of users following a certain user name and the amount of tweets for the same user name, as the actual twitter page itself does
This works fine for ‘followers’ but i can’t seem to find anything about how to get the tweet_count. Has this been removed or am i looking in the wrong place.
The code below works for ‘followers’ but is there a way to easily update this so it works for the total amount of tweets?
I’m a Flash guy and am just starting to learn this stuff, please go easy 
$.ajax({url: 'http://api.twitter.com/1/users/show.json',data: {screen_name: 'C4Paralympics'},dataType: 'jsonp',
success: function(data) {
var fAmt = ""+data.followers_count
$('#followerCount').html(addCommas(fAmt));
}
});
Cheers chaps!!