Allora, io ho realizzato una casella di testo scorrevole con le frecce su e giu', in pratica e' una casella di testo dinamico.
Non riesco a mettere un link ad una parola di quel testo mi da errore
Vi riporto se utile il codice:
onClipEvent (load){
thetextbox = "<P ALIGN=\"LEFT\"><FONT FACE=\"Arial\" SIZE=\"12\" COLOR=\"#000000\">il testo e' questo ma non funziona il link</FONT></P><P ALIGN=\"LEFT\"></P><P ALIGN=\"LEFT\"><FONT FACE=\"Arial\" SIZE=\"12\" COLOR=\"#000000\"></FONT></P><P ALIGN=\"LEFT\"></P>";
scrolling = 0;
frameCounter = 1;
speedFactor = 3;
}
onClipEvent (enterFrame){
if( frameCounter % speedFactor == 0){
if( scrolling == "up" && thetextbox.scroll > 1){
thetextbox.scroll--;
}
else if( scrolling == "down" && thetextbox.scroll < thetextbox.maxscroll){
thetextbox.scroll++;
}
frameCounter = 0;
}
frameCounter++;
}
Vi ringrazio anticipatamente dell'aiuto.....


Rispondi quotando