http://www.hb-europe.com/flash/registrar.swf
pero cuando el mismo .swf lo abres dentro de otro .swf (el principal) entonces no se escuchan los sonidos
El codigo que uso es el siguiente:
Código:
Dios sabra a que puede deberse esto...var tancar:Sound = new Sound(); var obrir:Sound = new Sound(); tancar.attachSound("tancacomporta"); obrir.attachSound("obrecomporta"); abrir.onRelease = function() { mosaico._visible = true; mover(); if (mov) { frame = 83-frame; } else { mov = true; if (frame == 0) { frame++; obrir.start(); } if (frame == 42) { frame++; tancar.start(); } if (frame == 83) { frame = 1; obrir.start(); } } };
Alguna idea?
ArgoN