tengo un problema con un attachSound que me reverbera continuamente el sonido cuando ejecuto el swf (y no en la primera exportacion). Le estoy dando este actionscript:
Código :
sonidoepic = new Sound();
sonidoepic.attachSound("epicloop");
sonidoepic.start(0, 1);
y el boton que lo apaga
Código :
on (release) {
_parent.seccion00.sonidoepic.stop();
}
Tal vez sea porque estoy attacheando al line principal diferentes secciones y usando Stage:
Código :
fscommand("fullscreen", true);
Stage.showMenu = false;
_global. ANCHO = System.capabilities.screenResolutionX;
_global. ALTO = System.capabilities.screenResolutionY;
Stage.align = 'LT';
Stage.scaleMode = 'noScale';
oye = new Object();
oye.onResize = function() {
expandir();
};
Stage.addListener(oye);
_global.expandir = function () {
_global.ancho=Stage.width;
_global.alto=Stage.height;
attachMovie("seccion00", "seccion00", 1);
};
expandir();
A lo mejor a alguien se le ocurr por que el attachSound produce el reverberamiento... gracias
