Ver Mensaje Individual
  #2 (permalink)  
Antiguo 29/03/2011, 16:23
Avatar de Bandit
Bandit
Moderador
 
Fecha de Ingreso: julio-2003
Ubicación: Lima - Perú
Mensajes: 16.726
Antigüedad: 21 años, 4 meses
Puntos: 406
Respuesta: Rebobinar haciendo roll over/out

Hola Snowball:
Si es posible hacer eso.
Coloca tu botón en el escenario y le pones como nombre de instancia: btn.
Crea otra capa y en el primer frame coloca el MC con el nombre de instancia: miMC.
Crea la capa para las acciones y en el primer frame, el siguiente código:
Código actionscript:
Ver original
  1. function inversa() {
  2.     this.onEnterFrame = function() {
  3.         if (_root.miMC._currentframe>1) {
  4.             _root.miMC.prevFrame();
  5.         } else {
  6.             delete this.onEnterFrame;
  7.         }
  8.     };
  9. }
  10. btn.onRollOver=function(){
  11.     _root.miMC.play();
  12. }
  13. btn.onRollOut=function(){
  14.     inversa();
  15. }
Espero haberte sido de ayuda.
__________________
Bandit.
Si no sabes estudia y si sabes enseña.
http://www.banditwebdesign.com/