china_black 0 Denunciar post Postado Setembro 8, 2010 Olá pessoal, fiz um tutorial de uma rádio MP3 aqui e neste tutorial o professor usa um evento pra chamar o nome das musicas em ID3 assim: theSound.addEventListener(Event.ID3, metaDataComplete); function metaDataComplete(metaEvent:Event):void { trackTitle.text = theSound.id3.songName;//id3.TIT2 albumTitle.text = theSound.id3.album;//id3.TALB artist.text = theSound.id3.artist;//id3.TPE1 year.text = theSound.id3.year;//id3.TYER if (theSound.id3.songName == null) { trackTitle.text = "unknown track"; } if (theSound.id3.album == null) { albumTitle.text = "unknown album"; } if (theSound.id3.artist == null) { artist.text = "unknown artist"; } if (theSound.id3.year == null) { year.text = "unknown year"; } } O código funciona normalmente, as músicas ele chama via txt Quando jogo online ele parece que não pega o ID3 das musicas Alguém sabe se as músicas precisam ter algum plugin ou algo do tipo online pra buscar os nomes?? Aguardo... Obrigado Compartilhar este post Link para o post Compartilhar em outros sites
Eder Fortunato 15 Denunciar post Postado Setembro 11, 2010 acho que o arquivo mp3 precisa ter as tag ID3 nele, nem todos tem esses valores outra coisa que pode ser, é você estar carregando as musicas de um domínio diferente de onde esta o .swf vale dar uma olhada nisso []´s Compartilhar este post Link para o post Compartilhar em outros sites