In case Flash no longer exists; a copy of this site is included in the Flashpoint archive's "ultimate" collection.

Dead Code Preservation :: Archived AS3 works from wonderfl.net

internet radio streamer

Get Adobe Flash player
by paddlesteamer 08 Aug 2011
/**
 * Copyright paddlesteamer ( http://wonderfl.net/user/paddlesteamer )
 * GNU General Public License, v3 ( http://www.gnu.org/licenses/quick-guide-gplv3.html )
 * Downloaded from: http://wonderfl.net/c/dFOj
 */

package {
    import flash.net.URLRequest;
    import flash.media.Sound;
    import flash.display.Sprite;
    public class FlashTest extends Sprite {
        private var snd:Sound;        
        
        public function FlashTest() {
            // write as3 code here..
            
            snd = new Sound();
            snd.load(new URLRequest("http://94.75.234.63:80/;stream.mp3"));
            
            snd.play();
        }
    }
}