
Код:
System.security.loadPolicyFile("http://85.249.141.37/crossdomain.xml")
mSound = new Sound(this);
mSound.loadSound( "http://85.249.141.37:443/live.mp3", true);
mSound.onLoad = function(success:Boolean) {
if (success) {
b = mSound.getBytesLoaded()
txt.text = "Стрим кончился ("+b+" байт)";
} else {
txt.text = "Загрузка не удалась";
}
}
mSound.onID3 = function(){
song = mSound.id3.songname
autor = mSound.id3.artist;
txt.text = autor + " - " + song;
}