Ver Mensaje Individual
  #4 (permalink)  
Antiguo 14/03/2006, 20:37
Avatar de bernethe
bernethe
 
Fecha de Ingreso: abril-2004
Ubicación: San José, Costa Rica
Mensajes: 384
Antigüedad: 20 años
Puntos: 2
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&oacute; 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;
	}
};
__________________
..::BERNETHE::..