get ID3info
how can read taginfo internal mp3? it's easy if load external mp3 files, doesn't work mp3 library!
code:
var mymusic:sound = new mymp3(); //mymusic = new var , mymp3 class of mp3 file in library
mymusic.addeventlistener(event.id3, getid3);
mymusic.play(); //it plays
function getid3(event):void{
var showtag:id3info = mymusic.id3;
trace(showtag.id3.artist);//nothing happens
}
thank you
ademar
More discussions in ActionScript 3
adobe
Comments
Post a Comment