![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
19/02/2006, 14:05
|
![Avatar de pulento](http://static.forosdelweb.com/customavatars/avatar27790_1.gif) | | | Fecha de Ingreso: noviembre-2002 Ubicación: En un pequeño, helado, obscuro reino... llamado Dinamarca.
Mensajes: 1.852
Antigüedad: 22 años, 3 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 |