Sound.id3 - cant retreive length/size?

hey folks,
Im trying to use the code below to retrieve the length/time of an mp3 file using the id3…I can return things liek artist/year/publisher but cant get these other params…what am i dooin wrong???
[AS]
var my_sound:Sound = new Sound();
my_sound.onLoad = function(success:Boolean) {
if (success) {
trace(“sound loaded”);
trace( "id3 info : "+ my_sound.id3.TIME )
trace( "id3 info : "+ my_sound.id3.TLEN )
}
};

my_sound.loadSound(“E:/My Music/A Perfect Circle/mer de noms/01 the hollow.mp3”, true);
[/AS]