19/02/2006, 14:05
|
| | | Fecha de Ingreso: noviembre-2002 Ubicación: En un pequeño, helado, obscuro reino... llamado Dinamarca.
Mensajes: 1.852
Antigüedad: 22 años, 2 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 |