Ver Mensaje Individual
  #2 (permalink)  
Antiguo 22/01/2007, 16:00
Rizzo
 
Fecha de Ingreso: septiembre-2006
Mensajes: 1.193
Antigüedad: 17 años, 7 meses
Puntos: 30
Re: ayuda para musica de fondo

Código:
this.createTextField("texto", this.getNextHighestDepth(), 0, 0, 100, 22);
var sonido:Sound = new Sound();
sonido.onLoad = function(success:Boolean) {
	if (success) {
		sonido.start(0,999);
		texto.text = "Sonido cargado";
	} else {
		texto.text = "No cargo";
	}
};
sonido.loadSound("tusonido.mp3", true);