I have a main movieClip called mainButt and inside that it has a subButt movieClip.
I'm trying to find a way to be able to have events on both. So when you rollOver the mainButt its onRollOver is active and then when you rollover the subButt that's inside mainButt that onRollOver is active. Can this be done.
This structure has to stary so just want to know if this can be done or will the maniButt always take preferance over the subButt.Code:mainButt.onRollOver=function(){ trace("over main butt"); } mainButt.subButt.onRollOver=function(){ trace("over sub butt"); }
Thanks,




Reply With Quote