Vanilla 1.1.4 is a product of Lussumo. More Information: Documentation, Community Support.
this.createEmptyMovieClip("introH", 0);
this.createEmptyMovieClip("siteH", 1);
introH.loadMovie("intro.swf"); // show some preloader here
siteH.loadMovie("site.swf");
onEnterFrame = function(){
if (introMC._currentframe = 130) // that would be your last frame from the intro
{
delete onEnterFrame;
siteMC.gotoAndPlay(1);
}
}
1 to 2 of 2