L'ho provato e funziona (intanto ti ringrazio tantissimo!)

Io ho questo menu:

var menuItems:Array = new Array;
menuItems.push("Flashden");
menuItems.push("Join");
menuItems.push("Tutorial");
menuItems.push("features");
menuItems.push("about");
menuItems.push("support");
menuItems.push("Collis");
menuItems.push("Cyan");
menuItems.push("Ryan");
menuItems.push("Jun");

var ease:Number = 10;

// Ill axplain a little what the code is all about.
// the two variables down here wil calculate the height of the scrollpanel
// needed for the right scroll
// Examine it and it will all be clear.

var panelLength:Number = menuItems.length*82;
var Multi:Number = (panelLength-220)/300;

// The inline function down here tells the panel what position is should have
// compared to the position of the mouse
// It also tells it to move there with an ease to make it a little smoother

scrollpanel.onEnterFrame = function() {
ypos = (_ymouse*Multi*-1)+50;
mover = (ypos-this._y)/ease;
this._y += mover;

// these if statements will see to it that the scroller wont leave your movie

if (this._y > 5) {
this._y = 5;
}
if (this._y < -(panelLength-295)) {
this._y = -(panelLength-295);
}
};


Ora non c'e' un modo di inserire al posto di :

menuItems.push("Flashden");

il contenuto del txt?
In pratica utilizzando il txt che mi hai dato te con il testo del bottone e il relativo URL?
Grazie mille