Simple if else's will work, depends on how many buttons you have, you may be better with an array.
Also use on press to get your URL, then it will stay better.
Code:
this.linksMC.onPress = function() {
linksMC.gotoAndStop(9);
getURL("http://mydomain.com/links.html");
}
for an if/else you can try simple things like:
Code:
if (the other button name._currentframe >= 2){
this.gotoAndStop(1);
}
As for your other question... sure, if you are using the same exact movie on the page. Although I will admit I don't fully understand what you mean by that.
Bookmarks