in content_mc it stops at 35 and attachs the _root.fromName movie and then when another button is pushed it starts from frame 36 in content_mc and removes the _root.fromName clip.
However _root.fromName = the new clip i want and not the old one.
So in frame 35 i added -
button_array = [“home”,“plans”,“terms”,“contact”];
for (var i in button_array){
this[button_array*].onRelease = function() {
_root.fromName = 0;
content_mc.gotoAndPlay(36);
** _root.fromName = button_array*+"_mc";**
};
}
well does that pass on a correct name for the movie i want,
i have home_mc in my libary and just added plans_mc and when i click the Plans button it still displays the home_mc clip