Foros del web
Iniciar Sesión
var musica:Sound = new Sound(); musica.onLoad = function(ok:Boolean) { if (ok) { this.start(); } }; musica.loadSound("cancion.mp3"); stop_btn.onRelease = function() { musica.stop(); };