el caso es el siguiente, tengo un movie clip al cual llamo giro y este posee adentro otros pequeños movie clips con sus respectivas instancias b1,b2,b3. La cuestion es q quiero que giro rote todo el tiempo y q cuando hago rollOver sobre b1,b2, o b3 giro pare de rotar, y que cuando haga rollOut giro continue rotando. adicionalmente b1,b2 y b3 tambien giran.
hasta ahora he logrado lo primero que giro pare cundo le doy rollover a b1, b2 o b3 pero no he logrado que cuando ocurra el rollOut continue la rotacion. seguaramente sea algo muy sencillo peroo, crreannme loo he intentado de muchas formas, de antemano muchas gracias
Código ActionScript :
#include "mc_tween2.as"
var conteoM=0;
_root.onEnterFrame=function(){
if (conteo=360) {
conteoM+=1;
_root.giro._rotation=conteoM;
_root.giro.b1._rotation=conteoM;
_root.giro.b2._rotation=conteoM;
_root.giro.b3._rotation=conteoM;
}
}
_root.giro.b1.onRollOver = function () {
_root.giro = stop;
};
_root.giro.b2.onRollOver = function (){
_root.giro = stop;
}
_root.giro.b3.onRollOver = function (){
_root.giro = stop;
}; 