hey im using the following code for my main four buttons -
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";
};
}
but every button restarts the home_mc clip…
i call it like this in the content_mc clip -
stop();
attachMovie(_root.fromName, _root.fromName, 1);
it also gets removed due to a slide down menu refresh everytime a button is pressed.
SO i have no idea whats going on