Me explico porque, pues es que quiero q el boton tenga como una sombra y que cuando le haga mouse over al movieclip el movieclip de la sombra se mueva a la par como un reflejo
Estoy utilizando esto
Código :
onClipEvent (load) {
this.xO = this._y;
this.onRollOver = function() {
this.tween("_y", this.xO -76, 0.5, "easeoutbounce");
};
this.onRollOut = function() {
this.tween("_y", this.xO, 0.7, "easeoutbounce");
};
this.onRelease = function() {
this.tween("_y", this.xO, 0.7, "easeoutbounce");
};
this.onRelease = function() {
_root.container.loadMovie("mc4.swf");
}
}Esto le da movimieto al movieclip, pero no se como darle movimiento al movieclip del reflejo muchas gracias por todo
