TextConverter.TEXT_FIELD_HTML_FORMAT , dynamic text, need to add scrollbar
I have a setter that changes HTML text to TextFlow
public function set text(value:String):void {
_log = value;
_flowElement = TextConverter.importToFlow(_log, TextConverter.TEXT_FIELD_HTML_FORMAT, _configuation);
_flowElement.flowComposer.addController(_containerController);
_flowElement.flowComposer.updateAllControllers();
_containerController.verticalScrollPosition = _containerController.getContentBounds().height;
_flowElement.flowComposer.updateAllControllers();
}
i need to attach scrollbar to _containerController. Any ideas?
