Bonjour,
J'essaye de construire mon 1er site Flash et je suis bloquée...
Quand je clique sur mon 1er bouton (b1), je voudrais que la frame 5 s'affiche et quand je clique sur mon 2eme bouton (b2), il faudrait que la frame 6 s'affiche.
J'ai essayé plusieurs choses mais ça ne marche pas...
Est-ce qu'il y a une ligne que je peux rajouter à mon script (voir ci-dessous) pour que ça marche ?
Merci pour votre aide.
Lili
b1.onRollOver = over;
b1.onRollOut = out;
b1.buttText.buttonText.text = "Company Profile";
b2.onRollOver = over;
b2.onRollOut = out;
b2.buttText.buttonText.text = "Directors";
b3.onRollOver = over;
b3.onRollOut = out;
b3.buttText.buttonText.text = "Nigeria & Africa";
b4.onRollOver = over;
b4.onRollOut = out;
b4.buttText.buttonText.text = "Strategy";
b5.onRollOver = over;
b5.onRollOut = out;
b5.buttText.buttonText.text = "Our Offices";
function over() {
this.gotoAndPlay(2);
}
function out() {
this.gotoAndPlay(7);
}
Partager