Hi,
What your doing is negating the child object with the parent objects code. A button inside a movieclip has a rollOver property. However, if the movieclip holding the button also has a rollOver event, it will fire first and the button inside wont. This is called competeing events. The same thing occurs if you put a movieclip inside of a movieclip with the same situation. The solution would require you to seperate the objects. Using movieclips as buttons allows you a bit more control than button code. Say you have two movieclips on seperate layers, you could then do something like....
Code:
myMC.onRollOver=function(){
myMC2.gotoAndPlay("open");
}
myMC2.onRollOver=function(){
//do something;
}
A mind once stretched by a new idea never regains its original dimensions.
- Oliver Wendell Holmes
Bookmarks