ciao..ho l'effetto dei titoli di coda che scorrono da destra verso sinistra USATO per inserire nel mio lavoro delle news in un'unica riga... utilizzando tale actionscript che richiama un file di testo esterno che sarà quello che modificherò...tutto in actionscript senza caselle di testo dinamiche

code

1°frame livello 1
System.useCodepage = true;
fscommand("allowscale",false);
iltesto = new String("Errore durante il caricamento dei dati...");
app = new LoadVars();
app.path = this;
app.load("news.txt");
app.onLoad = function(ok) {
if (ok) {
this.path.iltesto = this.testo;
creaScroller();
}
};

1°frame livello b
// funzione per far scorrere il testo
function scorriTesto() {
this.testo._x -= this.velScorri;
if (Math.abs(this.testo._x)>this.testo._width-this._parent.maskera._x) {
this.testo._x = this._parent.maskera._x+this._parent.maskera._widt h;
}
}
// funzione per creare il campo di testo e maschera
function creaScroller() {
this.createEmptyMovieClip("mcTesto", 1);
mcTesto.createTextField("testo", 1, 0, 0, 1, 1);
this.createEmptyMovieClip("maskera", 2);
// preparo la maschera
with (maskera) {
larghezza = 400;
altezza = 20;
// creazione della maschera \\
beginFill(0xffffff, 100);
lineStyle(0, 0x000000, 100);
moveTo(0, 0);
lineTo(larghezza, 0);
lineTo(larghezza, altezza);
lineTo(0, altezza);
lineTo(0, 0);
endFill();
// fine creazione \\
}
mcTesto.setMask(maskera);
// posiziono la maschera \\
maskera._x = 0;
// valore a piacere
maskera._y = 0;
// valore a piacere
// FORMATTAZIONE DEL CAMPO DI TESTO
formatoTesto = new TextFormat();
formatoTesto.size = "10";
formatoTesto.font = "char";
// carattere esportato dalla libreria
with (mcTesto) {
// posiziono il campo di testo
testo._y = maskera._y;
// coordinata y uguale a quella della maschera;
testo._x = maskera._x+maskera._width;
// coorindata x in modo che il testo si trovi all'inizio della maschera
testo.html = true;
testo.htmlText = iltesto;
testo.autoSize = true;
testo.selectable = false;
}
mcTesto.testo.embedFonts = true;
// incorporo i caratteri nel campo di testo creato
mcTesto.testo.setTextFormat(formatoTesto);
// applico le modifiche al campo di testo
mcTesto.velScorri = 2;
// velocità
mcTesto.onEnterFrame = scorriTesto; //richiamo la funzione per scorrere il testo

}


nel file di testo invece
testo=Grande Fratello ciao mi chiamo tiziana.


PROBLEMA
COME POSSO FAR Sì CHE IL TESTO SIA LINKABILE MENTRE SCORRE???