You need to dynamically load and play an MP3 file.
Use the Sound.load API to load and control the sound.
var sound = new Sound();
sound.loadSound("sound.mp3", true);
var url = new URLRequest("sound.mp3");
var sound = new Sound();
sound.load(url);
sound.play();