Ver Mensaje Individual
  #10 (permalink)  
Antiguo 13/02/2007, 10:32
Avatar de Bandit
Bandit
Moderador
 
Fecha de Ingreso: julio-2003
Ubicación: Lima - Perú
Mensajes: 16.726
Antigüedad: 20 años, 9 meses
Puntos: 406
Re: ir a un fotograma de un swf en el nivel 5

Hola champagne2007:
Bienvenido al Foro.
El código que tienes está mal.
En el botón para cargar 1.swf coloca el código así:
on (release) {
my_mc = this.createEmptyMovieClip("contenedor", 1);
my_mc.loadMovie("1.swf");
this.onEnterFrame = function() {
if (my_mc.getBytesLoaded() != 0 && my_mc.getBytesLoaded() == my_mc.getBytesTotal()) {
my_mc.gotoAndStop(3);//va al frame 3
delete this.onEnterFrame;
}
};
}
En el botón de 1.swf para ir por ejemplo al frame 5:
on(release){
gotoAndStop(5);
}

Espero haberte sido de ayuda.
__________________
Bandit.
Si no sabes estudia y si sabes enseña.
http://www.banditwebdesign.com/

Última edición por Bandit; 13/02/2007 a las 12:23