Friends,
I have downloaded an attachment, it has a button menu created with flash. Its having 4 buttons, but I need six, so I have duplicated the buttons and edited the text. But the problem is, it has a rollover animation. Which when clicked stops, from the buttons I copied the two also stops the animation when clicked on the duplicated buttons. Please help me, I am writing down the scripts, may that help you…
switch (_root.button) {
case “1”:
item1.gotoAndPlay(“s1”);
_root.link<>1;
break;
case “2”:
item2.gotoAndPlay(“s1”);
_root.link<>2;
break;
case “3”:
item3.gotoAndPlay(“s1”);
_root.link<>3;
break;
case “0”:
_root.link<>0;
break;
}
The scripts are same on both buttons, will editing them help to differentiate the button animation control?