Scusate ma di flash ne sò zero...
Qualcuno potrebbe inserirmi un getURL (se così si chiama), o comunque fare in modo che quando un utente clicca su uno dei nomi:

"this.somewords = "raffaele gianfranco michele michela marco studio francesco";

mi si apre una pagina in blank del browser, all'url che mi serve?
Attenzione l'url da assegnare, è differente per ogni nome..

Allego il codice, se qualcuno me lo può rispedire con la modifica, lo ringrazio eternamente, all'occorrenza posso inviargli il FLA in questione...
Grazie, perchè è un'anno che non ce ne vado fuori...javascript:void(0);


// register root as environment
Object.environment = this;

// create camera object
this.cam = {x:0, y:0, z:500, dx:0, dy:0, dz:-500};

// set environmental constants
this.fl = 1000;

// create 'space' to which all words will be attached
this.createEmptyMovieClip("space",1);
// center 'space' on the stage
space._x=300;
space._y=169;

// a string of words related to the wind
this.somewords = "raffaele gianfranco michele michela marco studio francesco";
// convert the string of words into an array of words
this.wordList = new Array();
this.wordList = this.somewords.split(" ");

// create one instance for each word in the list
for (n=0;n<this.wordList.length;n++) {
// pick a word from the list
var word = Object.environment.wordList[n];
var x = random(600)-300;
var y = random(337)-169;
var z = random(Object.environment.fl*2)-Object.environment.fl;