Como puedo utilizar este scroll con un campo de texto dinámico:
Código actionscript:
Ver original
import fl.controls.UIScrollBar; var url:String = "http://www.helpexamples.com/flash/text/lorem.txt"; var tf:TextField = new TextField(); tf.x = 10; tf.y = 10; tf.width = 500; tf.height = 380; tf.wordWrap = true; addChild(tf); var myScrollBar:UIScrollBar = new UIScrollBar(); myScrollBar.move(tf.x + tf.width, tf.y); myScrollBar.height = tf.height; myScrollBar.scrollTarget = tf; addChild(myScrollBar); var uLdr:URLLoader = new URLLoader(); uLdr.addEventListener(Event.COMPLETE, completeHandler); uLdr.load(new URLRequest(url)); function completeHandler(event:Event):void { tf.text = URLLoader(event.target).data; myScrollBar.update(); }
Gracias por su ayuda