Ver Mensaje Individual
  #4 (permalink)  
Antiguo 25/09/2010, 08:18
Avatar de rusoftware
rusoftware
 
Fecha de Ingreso: abril-2004
Ubicación: Rosario - Argentina
Mensajes: 1.083
Antigüedad: 20 años, 7 meses
Puntos: 2
Respuesta: MC dentro de MC

yo lo que decía era que mandes la variable rewind a _root... No puedo abrir el fla, probablemente por la version, apenas tengo la CS3.

Todo el código completo quedaría así:

codigo de MC2
Código actionscript:
Ver original
  1. stop();
  2. this.onEnterFrame = function(){
  3.     if(_root.rewind == true){
  4.         prevFrame();
  5.     }
  6. }
  7. this.onRollOver = function(){
  8.     _root.rewind = false;
  9.     play();
  10. }
  11. this.onRollOut = function(){
  12.     _root.rewind = true;  
  13. }


Luego el código de b3 quedaría así:
Código actionscript:
Ver original
  1. stop();
  2. this.onEnterFrame = function(){
  3.     if(_root.rewind == true){
  4.         prevFrame();
  5.     }
  6. }
  7. this.onRollOver = function(){
  8.     _root.rewind = false;
  9.     play();
  10. }
  11. this.onRollOut = function(){
  12.     _root.rewind = true;  
  13. }


Prueba eso, y si quieres que mire el fla, por favor guardalo con compactibilidad para CS3