en funcionamiento aquí.
el fla:
Código:
var cancion_actual:Number = 1; cancion = new Sound(); System.useCodepage = true; var canciones_xml:XML = new XML(); canciones_xml.ignoreWhite = true; canciones_xml.onLoad = function() { cargar_cancion(reproducir); }; canciones_xml.load("canciones.xml"); cargar_cancion = function (reproducir) { nombre_cancion = canciones_xml.childNodes[0].childNodes[cancion_actual-1].childNodes[1]; titulo_cancion.txt_titulo.anim_titulo.titulo_cancion.htmlText = nombre_cancion; cancion.loadSound(cancion_actual+".mp3",true); cancion.setVolume(20); }; var estado = true; //CONTROL DE ESTADO DE LA MUSICA control.onPress = function() { if (estado) { control.gotoAndStop("off"); estado = false; cancion.stop(); } else { control.gotoAndStop("on"); estado = true; cancion.start(); } };