Load mp3 file from a URL : MP3 « Development « Flash / Flex / ActionScript

Home
Flash / Flex / ActionScript
1.Animation
2.Array
3.Class
4.Data Type
5.Development
6.Function
7.Graphics
8.Language
9.Network
10.Regular Expressions
11.Statement
12.String
13.TextField
14.XML
Flash / Flex / ActionScript » Development » MP3 
Load mp3 file from a URL
 

package{
  import flash.display.Sprite;
    import flash.media.*;
    import flash.events.*;
    import flash.net.*;
    import flash.text.*;
  public class Main extends Sprite{
    public function Main(){

        var song:Sound = new Sound(new URLRequest("http://server.com/robotPicksFlowers.mp3"));
        song.play();

    }
  }
}

        
Related examples in the same category
1.Load mp3 sound file
2.Find Out When a Sound Finishes Playing
3.Tracking the Progress of a Playing Sound
4.Reading the Level of a Sound
5.Calculating Spectrum Data
6.ID3 Reader
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.