OK here is the problem.

I have a flash program which contains a movie clip. The _root is one frame long
and i created an onEnterFrame to load a movie when the current movie in myMC
finishes.. problem is it doesn't work.

myMC is a MovieClip on the stage. When the flash starts it loads the first
movie fine... When the user presses a button the first movie uses
gotoAndPlay("fade") the label "fade" exists in every movie. everything wokrs
fine except when the user presses the button to change movie. The current movie
in myMC fades fine. But the code in myMC.onEnterFrame never executes.

As far as I can tell even though it is myMC.onEnterFrame it is acting like
_root.onEnterFrame executing once for the sole frame in the main movie.

myMC.onEnterFrame = function() {
if (_root.myMC._currentframe = _root.myMC._totalframes) {
myMCL.loadClip("flash/" + activepage + ".swf","_root.myMC");
}
}

I also tried declaring it as _root.myMC.onEnterFrame = function()

I help or ideas would be greatly appreciate.