hi,
i have a grid of images. each image needs a rollover state that is bigger than the actual image. this means the rollover overlaps other images. my problem is that when a rollover state is working i want the other images to be not enabled. i am using MC as buttons so am not sure how to auto turn off the other MC with AS.
here is the AS i have to control the MC’s:
var num:MovieClip;
function over() {
this.gotoAndPlay(8);
}
function out() {
this.gotoAndPlay(1);
}
people0.onRollOver = over;
people0.onRollOut = out;
people1.onRollOver = over;
people1.onRollOut = out;
any tips would be great. thanks.