I have not been able to get it to work. I have copied the src into my project (removed the textLayout.swc) with no warnings but the flashx.textLayout.BackgroundManager drawAllRects is never called from anywhere. Note for posterity: To get it to compile I had to add -define=CONFIG::debug,false -define=CONFIG::release,true (or true / false) to the compiler options. Also, in the constructor of some classes this class was causing compiler errors: public function IntPropertyHandler(minValue:int,maxValue:int,limits:String = Property.ALL_LIMITS) It had to be changed to: public function IntPropertyHandler(minValue:int,maxValue:int,limits:String = "allLimits") Also there was a conflict where a variable had to be cast to a ContextMenu because of a NativeMenu error. Note I've tried to set my own containerController but getController returns null if the container controller does not extend TMContainerController. The problem is you can't extend TMContainerController because it is a non public inner class in TextContainerManager. private function getController():TMContainerController { return _textFlow.flowComposer.getControllerAt(0) as TMContainerController; } Can it be ContainerController?
... View more