Loading dynamic text problem

Hi there,

I wonder if anyone can help. I’ve been trying to load an external text file on release and have done this without a problem on a separate movie but I just can’t get it to work on the attached movie - most frustrating! Here’s the code attached to the movie clip but it’ll probably be clearer if you have a look at the movie.

Thanks in advance

Dan

on (rollOver) {
bounce = false;
// this controls the scaling for the bounce effect
// you can change these to make the bounce big or small
// multiplication makes it bigger
// division makes it smaller
xscale = Number(xscale1.2);
yscale = Number(yscale
1.2);
_root.x = 1;
_root.caption.words = “Chartwell Investment”;

}
on (rollOut) {
bounce = false;
// this resets the scaling for the bounce effect
// this number has to match the “xscale” and “yscale” at the top layer of this clip
xscale = Number(100);
yscale = Number(100);
_root.x = 0;
_root.caption.words = " ";
}
on (release) {
loadText = new loadVars();
loadText.load(“text/fs.txt”);
//creating the loadVarsText function
loadText.onLoad = function() {
scroller.text = this.fstext;
};

}