Hola amigos, disculpen pero necesito un poco de su ayuda, estuve revisando el api de twitter y logre colocar mis twitts en la pagina que estoy haciendo pero quiero colocar adicionalmente la fecha y me gustaria que los links funcionaran, alguien sabe como podria hacerlo?

este es el link del API API Twitter

y este es el codigo que use


Código ActionScript :

stop();

import flash.net.URLRequest;
import flash.net.URLLoader;

var i:URLLoader = new URLLoader();

i.addEventListener(Event.COMPLETE,loaded);

i.load(new URLRequest("http://api.twitter.com/1/statuses/user_timeline.xml?screen_name=CUENTATWITTER"));

function loaded(e:Event):void{
   e.currentTarget.removeEventListener(Event.COMPLETE,loaded);
   var xml:XML = new XML(e.currentTarget.data);
   var list:XMLList = new XMLList(xml.status.text);
   box.text = list[0];
   box1.text = list[1];
   box2.text = list[2];
   box3.text = list[3];
   
}