umm la verdad no me gusta trabajar con eval... no se.. cuestion de gustos....
Tomando tu ejemplo yo lo haria asi...:
Código PHP:
links = ["http://www.google.com", "http://www.yahoo.com",
"http://www.altavista.com"];
for (i in link) {
var boton = attachMovie("clip", "NuevoNombre", i);
boton._x = 100;
boton._y = 20*i;
boton.link = links[i];
boton.onPress = function() {
getURL(this.link);
};
}
Pero como ya dije es cuestion de gustos...
Saludos!!