Hola icuevas:
Bienvenido al Foro.
Tu código escríbelo así:
Código actionscript:
Ver originalvar pausa:Number = 0;
var estado:Number = 0;
Sonido.stop();
_root.onLoad = function() {
misonido = new Sound();
misonido.attachSound("musica");
misonido.onSoundComplete = function() {
misonido.start();
};
};
Sonido.onPress = function() {
if (estado == 0) {
misonido.start(pausa/1000);
estado = 1;
Sonido.gotoAndStop("pause");
} else {
pausa = misonido.position;
misonido.stop();
estado = 0;
Sonido.gotoAndStop("play");
}
};
Espero haberte sido de ayuda.