Ok I’m building a full flash site and have a question about loading a .swf. When the site first opens it loads a .swf file that in turn loads another into itself. the code I used do do that is.
createEmptyMovieClip("leftmc", 2);
leftmc.loadMovie("leftinfo.swf");
leftmc._x = 66;
leftmc._y = 99;
That loads fine, my problem is that I want to load another .swf file in to that same position when a nav. button on the main timeline is clicked and I assumed that I would use
On (release) {
leftMc.loadMovie("aboutus.swf");
}
But that’s not working.
what should I do