I posted this is the MX2004 forum but I’m hoping to get more eyes on it here…
[COLOR=black]Here’s my question: I have a flash movie with left side navigation and empty space to the right of the NAV bar. The empty space to the right has a newMovieClipLoader and here is the code:[/COLOR]
_global.mainMovie = this;
var empty = this.createEmptyMovieClip("container", "1");
empty._x = 203;
empty._y = 0;
my_mc = new MovieClipLoader();
after this is a pre-loader which works fine so I’m not including that code. The left nav buttons work great. Each click on a menu item loads the proper movie into “my_mc”:
my_mc.loadClip("tehome.swf", "container");
The problem is when there is a movie on the right side and I have a hyperlink in that movie that should load a different page right where the current movie is playing. I created a button in the movie and that code is:
on (release){
mainMovie.select1._visible = false;
mainMovie.select4._visible = true;
mainMovie.my_mc.loadClip("temenu4.swf", "container");
}
The two items controlling the visibility in “mainMovie” work fine but the clip will not load, or it is loading behind the current movie, I’m not sure which.
Any suggestions?
I appreciate it.