 
			
				22/01/2007, 16:00
			
			
			     |  
      |    |    |    Fecha de Ingreso: septiembre-2006  
						Mensajes: 1.193
					  Antigüedad: 19 años, 1 mes 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);
              |