Ok. I'm back with some code. I've read up on a few things and thought this would work but it's still isn't for some reason.
On the first frame I'm declaring four variables (my buttons) set to false.
Each button has an action setting it to true.
Then my checker on the first frame of my mc:
Buttons.onEnterFrame = function() {
if (button01==true, button02==true, button03==true, button04==true) {
_root.gotoAndPlay(5);
}
};
Here is my test .fla. This is for Flash 6.
Any ideas?