First of all, this is my very first time here at jQuery forums, I'm here because I'm trying to make a very simple twitter client with Adobe AIR, just for learning purposes... my problem is because I'm doing something like:
- $(document).ready(function() {
var user = "twitter_user";
$.getJSON("http://twitter.com/statuses/user_timeline/"+ user +".json?count=1&callback=?", function(json){
var lastTweet = json[0].text;
var tweetTime = json[0].created_at;
var tweetTime = relative_time(json[0].created_at);
$("#twittexto").html(lastTweet);
$("#twittiempo").html(tweetTime);
});
});
When I use it directly on my browser (Firefox 3.x) or IE8, it runs just fine, but when I use it on my Adobe AIR application it just doesn't work...
Does anyone here made it yet?
Sorry about my english, english is not my natural language... btw, I'm from México =)