Hello
I’ve got some code like this:-
buttons_mc.blue3_mc.onRollOver = function(){
this.gotoAndPlay(“over”);
It’s for a drop down menu and I’ve got loads of drop down links I need to make the rollover event occur to.
I need some thing like above but with:-
buttons_mc.(blue3_mc, 1_mc, 2_mc…).onRollOver = function(){
Except I can’t make it work. Probably alarmingly simple i’ve just never needed such a thing before.
Any ideas?