I cannot display the scrollbar in a TLFTextFiled.
I tried with both ways:
1. TLFT.controller.verticalScrollPolicy='ON'
TLFT.textFlow.flowComposer.updateAllControllers();
2. var scrollBar:UIScrollBar=new UIScrollBar();
scrollBar.scrollTarget =TLFT;
The first one doesn't work and doesn't show any error.
The second one gives compile error because scrollTarget can be TextField only (that's strange because in the documentation scrollTarget is DisplayObject)
Thank you! F.