Hola malogama:
Coloca los 3 MC a la derecha fuera del escenario y le pones como nombre de instancia: mc_1, mc_2 y mc_3
Coloca tus botones en el escenario:
Código para el primer botón:
Código actionscript:
Ver originalon (release) {
mc_1.onEnterFrame = function() {
mc_1._x += (200-this._x)/8;
};
mc_2.onEnterFrame = function() {
mc_2._x += (550-this._x)/8;
};
mc_3.onEnterFrame = function() {
mc_3._x += (550-this._x)/8;
};
}
Para el segundo:
Código actionscript:
Ver originalon (release) {
mc_2.onEnterFrame = function() {
mc_2._x += (200-this._x)/8;
};
mc_3.onEnterFrame = function() {
mc_3._x += (550-this._x)/8;
};
}
Y para el terero:
Código actionscript:
Ver originalon (release) {
mc_3.onEnterFrame = function() {
mc_3._x += (200-this._x)/8;
};
}
Espero haberte sido de ayuda.