function ImportarSonido() { var sonido:SoundChannel; var dir:URLRequest = new URLRequest("xxx.mp3") var nuevoSonido:Sound = new Sound() nuevoSonido.load(dir); sonido = nuevoSonido.play(); } ImportarSonido()