Brandit, creo que lo que quiere hacer Enea es esto en HTML:
Código HTML:
<table width="150" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><marquee>A ver si te sirve esto, creo que a eso se refiere ciberpato cuando habla de un marquee, pero no me salió muy bien que digamos...</marquee></td>
</tr>
</table>
lo más parecido que pude lograr fué esto:
Código:
_root.createTextField("texto_txt", this.getNextHighestDepth(), 0, (Stage.height/2), (Stage.width), 200);
var st:String = "A ver si te sirve esto, creo que a eso se refiere ciberpato cuando habla de un marquee, pero no me salió muy bien que digamos...";
var largo:Number = 0;
this.onEnterFrame = function() {
texto_txt.text = st.substr(0, largo);
if (largo<st.length+100) {
largo++;
} else {
texto_txt.text = "";
largo = 0;
}
};