Ver Mensaje Individual
  #8 (permalink)  
Antiguo 13/01/2006, 14:07
Avatar de Mauri1
Mauri1
 
Fecha de Ingreso: noviembre-2002
Ubicación: Santiago de Chile
Mensajes: 558
Antigüedad: 21 años, 5 meses
Puntos: 0
Ah, lo olvidaba... también puedes hacerlo de esta forma

Código:
my_mc1.onRollOver = function() {
 _root.onEnterFrame = function() {
  my_mc._rotation += 5;
 };
};
my_mc2.onRollOver = function() {
 _root.onEnterFrame = function() {
  my_mc._rotation -= 5;
 };
};
Para una rotación infinita

NOTA: Mantén los otros dos botones y quítale la animación a my_mc, ya que ahora se controla la rotación dinámicamente.