los botones son Movieclips con mc tween y tienen este codigo
Código :
onClipEvent (load) {
this.xO = this._y;
this.onRollOver = function() {
this.tween("_y", this.xO -83, 0.5, "easeoutbounce");
};
this.onRollOut = function() {
this.tween("_y", this.xO, 0.7, "easeoutbounce");
};
this.onRelease = function() {
if (_root.currMovie == undefined) {
_root.currMovie = "section2";
container.loadMovie("section2.swf");
} else if (_root.currMovie != "section2") {
if (container._currentframe>= container.midframe) {
_root.currMovie = "section2";
container.play();
}
}
}
}
Los archivos externos tienen estos codigos:
En el frame 1 donde empieza la animación de entrada:
Código :
midframe = 25;
En el frame 25
Código :
stop();
Y en el frame 50
Código :
_root.container.loadMovie(_root.currMovie+".swf");
De nuevo muchas gracias y bendiciones por su ayuda.
