mira es facil
supongamos que tienes 500 mc llamados así mc1,mc2,mc3,mc4 la función seria así
Código PHP:
for (var i = 1; i<=500; i++) {
addBotonFun(this['mc'+i],i);
}
function addBotonFun(Boton, id) {
Boton.onRollOver = function() {//Empieza la funcion RollOver
//mc342 es la instancia del clip que crecera cuando se pase el raton
numero.text = id;
this.gotoAndPlay(2);//una linea para hechar andar el clip, nada importante
this.swapDepths(1);//para posicionar hasta arriba el clip
this.onEnterFrame = function() {//codigo para crecer
if (this._xscale<130) {//que escala crecerá
this._xscale = this._yscale=this._xscale+3;
} else {
delete this.onEnterFrame;
}
};
};
Boton.onRollOut = function() {//cuando se quita el raton codigo para decrecer
this.onEnterFrame = function() {
this.gotoAndPlay(11);
if (this._xscale>100) {
this._xscale = this._yscale=this._xscale-3;
} else {
delete this.onEnterFrame;
}
};
};
}