Ver Mensaje Individual
  #2 (permalink)  
Antiguo 19/02/2006, 14:05
Avatar de pulento
pulento
 
Fecha de Ingreso: noviembre-2002
Ubicación: En un pequeño, helado, obscuro reino... llamado Dinamarca.
Mensajes: 1.852
Antigüedad: 21 años, 5 meses
Puntos: 1
..
var mySound:Sound = new Sound();
mySound.loadSound("tuMusica.mp3", true);//debe estar en el mismo dire
this.playMusic.onRelease = function() {
var numSecondsOffset:Number = (mySound.position/1000);
mySound.start(numSecondsOffset);
}
this.stopMusic.onRelease = function() {
stopAllSounds();
}

Saludos