How Sound Works in AS3: assume that there is an MP3 file with the name sound.mp3 stored in the same folder as the SWF file.
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 sound:Sound = new Sound();
var url:String = "sound.mp3";
var urlRequest:URLRequest = new URLRequest(url);
sound.load(urlRequest);
}
}
}
Related examples in the same category