Ver Mensaje Individual
  #1 (permalink)  
Antiguo 02/01/2008, 10:48
kaos_diego
 
Fecha de Ingreso: mayo-2006
Mensajes: 159
Antigüedad: 18 años
Puntos: 0
Pregunta Scrollbar en Campo de texto!

Hola, este codigo es para mostrar un "html", dentro de un "SWF", FUNCIONA BIEN, pero lo que quiero es ponerle SCROLL para mostrar toda la informacion cuando se edite el html y se aumente información.


/////////////////////////
var ss:TextField.StyleSheet = new TextField.StyleSheet();
ss.load("sample.css");
content.styleSheet = ss;

content.multiline= true;
content.wordWrap = true;
content.html = true;

story = new XML();
story.ignoreWhite = true;
story.load("sample.html");
story.onLoad = function () {
content.htmlText = story;
}
////////////////////////////

* Se podrá poner un Scroll?????