Rss feed in flash not displaying

When i test my movie in Flash, it shows the rss feed from twitter just fine. When i test the HTML page locally it works fine, but when i view it live online it doesn’t display. its current state is at krambuhl.com, and it should say something after “annie is”.

this is the code i am using:


var tweet:ParseRSS=new ParseRSS("http://twitter.com/statuses/user_timeline/40301720.rss");
tweet.addEventListener("dataWritten", onDataReceived);

function onDataReceived(e:Event):void {
    trace(tweet.itemTitles);
    tweet_sm["twitter_1"].htmlText=tweet.itemTitles[0];
    twitter_large["tweet_big"].htmlText=tweet.itemTitles[0];

}


any ideas for what i should do?

thanks in advance! annie