Hello all! Im working on a website where I click a link and it loads an external SWF on an upper layer, anyway it works fine in the individual mc but when I try it in the container mc on my website when I click the link the link on the actual site the mc is out of place. How do I fix this? When I try to load it into a container mc it works fine on the individual swf but when using it on the website it makes the other SWF dissapear. Does this make sense? Please help ASAP!
Thanks
Fidelity
Someone helped me once with that problem.
container_mc._x = xVal;
container_mc._y = yVal;
container_mc._xscale = xScale;
container_mc._yscale = yScale;
container_mc.loadMovie(“somemovie.swf”);
I hope that helps.
what should I do about all the other part of the other SWF dissapearing?! Its really weird. When I click a link to the other swf which is being loaded into the container it makes everything else dissapear. What is that?
Thanks
Fidelity
Maybe you are loading all the SWFs on the same level. The AS “loadMovieNum” has levels.
e.g.:
loadMovie(“yourClip”,level);
loadMovie(“mymovie.swf”, 1); this loads your external clip at level 1, a level higher than your main movie which is 0.
solid gold for swf-loading, level conflict:
getNextHighestDepth()
works like a charm