Или так:

Код:
loadVariablesNum("links.txt",0);
MovieClip.prototype.act = function(){
this.i = _root.i;
this.onRollOver = function(){
this.gotoAndPlay("s2");
this.useHandCursor=false
}
this.onRollOut = function(){
this.gotoAndPlay("s1");
this.useHandCursor=true;
}
this.onRelease = function(){
// trace(_root["link"+this.i]);
getURL(_root["link"+this.i]);
}
}
for(i=0;i<=10;i++){
_root["but"+i].act();
}