Loading Question

Hey all,

I’ve got a movie where it starts with a movie clip with a loading sequence inside it… the main timeline stops and the mc timeline plays to a point, then stops and I want the actionscript to basically say: “If frame X of the main timeline is loaded, then gotoandplay frame 25 of this mc”

The code I’m messing with is:


ifFrameLoaded(83)
{
    gotoAndPlay(25);
} // End of ifFrameLoaded

But if I understand correctly, that’s just saying “if frame 83 of this movie clip’s timeline is loaded…”

Am I correct? If so, how do I fix?

Thanks all!

Ben