Hi,

I'm fairly new to Flash 5, but I know the basics. But i cannot figure this out.

It seems simple - I have Button A. On the other side of the page I have various other buttons, lets say Buttons 1-8 (these buttons are movie clips with ON and OFF states).

What I want to do is when button A is rolled over, I want to highlight certain buttons of 1-8.

Doing just one is no problem:
on (rollOver) {
tellTarget ("_root.A1") {
gotoAndPlay (6);
}
}
on (rollOut) {
tellTarget (_root.A1) {
gotoAndStop (1);
}
}

But I cannot get started on how to do more than one. Furthermore, there will actually be buttons B and C too - and each button (a b and c) will light up different buttons of the 1-8 variety depending. I imagine I need to set some variables in button a, but from there - I'm l ost...


HELP!

Tom