Menu questions [renamed]

Hi everyone, I’m here just to ask for some little help, I have a menu with 8 buttons, I could made my buttons move with some actionscript, but all moved together and I want to insert a little delay between the buttons when animation start, could anyone knows how to achieve this.

Thank’s in advanced

Mictlantecuhtli :smiley:

it is easier for me to give an answer if I can see an example

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:

Anyone with a good idea about this ??

Thank’s in advanced :thumb:

Mictlantecuhtli :nerd: