Código :
var mySound:Sound;
var txtAlbum:TextField;
var txtArtist:TextField;
mySound = new Sound();
mySound.loadSound("audio.mp3", true);
mySound.start(0,1);
mySound.onID3 = function():Void{
txtAlbum.text = mySound.id3.TALB;
txtArtist.text = mySound.id3.TPE1;
}
