Nectarine (demoscene radio)

by makc3d forked from Radio Swiss Classic (diff: 5)
♥0 | Line 12 | Modified 2009-07-31 20:02:23 | MIT License
play

ActionScript3 source code

/**
 * Copyright makc3d ( http://wonderfl.net/user/makc3d )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/uS8q
 */

// forked from makc3d's Radio Swiss Classic
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://demovibes.de:8000/necta192.mp3"
            )); radio.play ();            
        }
    }
}

Forked