this is my code
stop();
import mx.transitions.Tween;
import mx.transitions.easing.*;
var button_tween:Object = new Tween(b1_mc, "_x", Bounce.easeOut, -100, 75, 2, true);
var button_tween:Object = new Tween(b2_mc, "_x", Bounce.easeOut, -100, 75, 2, true);
var button_tween:Object = new Tween(b3_mc, "_x", Bounce.easeOut, -100, 75, 2, true);
var button_tween:Object = new Tween(b4_mc, "_x", Bounce.easeOut, -100, 75, 2, true);
var button_tween:Object = new Tween(b5_mc, "_x", Bounce.easeOut, -100, 75, 2, true);
var button_tween:Object = new Tween(b6_mc, "_x", Bounce.easeOut, -100, 75, 2, true);
var button_tween:Object = new Tween(b7_mc, "_x", Bounce.easeOut, -100, 75, 2, true);
var button_tween:Object = new Tween(b8_mc, "_x", Bounce.easeOut, -100, 75, 2, true);
stop();
this.b1_mc.onRollOver = function() {
b1_mc.gotoAndPlay("2");
_root.my_Text.text="Hermosillo";
}
this.b1_mc.onRollOut = function() {
b1_mc.gotoAndPlay("1");
}
this.b1_mc.onPress = function() {
_root.contenedor_mc.loadMovie("hermosillo.swf", 1);
}
this.b2_mc.onRollOver = function() {
b2_mc.gotoAndPlay("2");
_root.my_Text.text="Nogales";
}
this.b2_mc.onRollOut = function() {
b2_mc.gotoAndPlay("1");
}
this.b3_mc.onRollOver = function() {
b3_mc.gotoAndPlay("2");
_root.my_Text.text="Caborca";
}
this.b3_mc.onRollOut = function() {
b3_mc.gotoAndPlay("1");
}
this.b4_mc.onRollOver = function() {
b4_mc.gotoAndPlay("2");
_root.my_Text.text="San Luis Río Colorado";
}
this.b4_mc.onRollOut = function() {
b4_mc.gotoAndPlay("1");
}
this.b5_mc.onRollOver = function() {
b5_mc.gotoAndPlay("2");
_root.my_Text.text="Agua Prieta";
}
this.b5_mc.onRollOut = function() {
b5_mc.gotoAndPlay("1");
}
this.b6_mc.onRollOver = function() {
b6_mc.gotoAndPlay("2");
_root.my_Text.text="Guaymas";
}
this.b6_mc.onRollOut = function() {
b6_mc.gotoAndPlay("1");
}
this.b7_mc.onRollOver = function() {
b7_mc.gotoAndPlay("2");
_root.my_Text.text="Ciudad Obregón";
}
this.b7_mc.onRollOut = function() {
b7_mc.gotoAndPlay("1");
}
this.b8_mc.onRollOver = function() {
b8_mc.gotoAndPlay("2");
_root.my_Text.text="Navojoa";
}
this.b8_mc.onRollOut = function() {
b8_mc.gotoAndPlay("1");
}
You can see how the buttons enter together, and I want to insert a delay between everyone.
Thank’s for your reply and greetings from México :thumb2:
Mictlantecuhtli :evil: