_parent.onRollOver overwriting onRelease

Hey everyone,

I have some code similar to this:


mc1.button.onRelease = function() {
    //do stuff
}
mc1.onRollOver = function() {
     //do stuff
}
mc1.onRollOut= function() {
     //do stuff
}

What’s happening is my onRollOver and onRollOut are overwriting my onRelease - the onRelease doesn’t work with the onRollover and onRollOut.

How can I fix this problem?

Any help here would be much appreciated. Thanks. :slight_smile: