forked from: flash on 2014-2-23
/**
* Copyright Jelass ( http://wonderfl.net/user/Jelass )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/zv1P
*/
package {
import flash.display.Sprite;
import flash.media.Sound;
import flash.net.URLRequest;
public class Nectarine extends Sprite {
public function Nectarine () {
// http://www.scenemusic.eu:443/demovibes/streams/ for more...
var radio:Sound = new Sound (new URLRequest (
"http://mp3.radioultra.ru/ultra-128.mp3"
)); radio.play ();
}
}
}