Actionscript 3 如何在TLF中选择流量元件?

Actionscript 3 如何在TLF中选择流量元件?,actionscript-3,apache-flex,flex4,tlf,Actionscript 3,Apache Flex,Flex4,Tlf,是否有一种方法可用于选择FlowElement?我检查了几个类,包括SelectionManager和EditManager,没有看到任何内容 以下示例显示了如何选择元素: <fx:Script> <![CDATA[ import flashx.textLayout.edit.ISelectionManager; import flashx.textLayout.edit.SelectionState; import fl

是否有一种方法可用于选择FlowElement?我检查了几个类,包括SelectionManager和EditManager,没有看到任何内容

以下示例显示了如何选择元素:

<fx:Script>
    <![CDATA[
        import flashx.textLayout.edit.ISelectionManager;
        import flashx.textLayout.edit.SelectionState;
        import flashx.textLayout.elements.FlowElement;
        import flashx.textLayout.elements.TextFlow; 

        protected function selectElementHandler(event:MouseEvent):void {
            var selectionManager:ISelectionManager = activeFlow.interactionManager as ISelectionManager;
            var element:FlowElement = activeFlow.findLeaf(selectionManager.anchorPosition);
            selectElement(element);
        }

        public function selectElement(flowElement:FlowElement):void { 
            var textFlow:TextFlow = flowElement.getTextFlow();
            var selection:SelectionState = ISelectionManager(textFlow.interactionManager).getSelectionState();
            var startIndex:int = flowElement.getAbsoluteStart();
            selection.updateRange(startIndex, startIndex + flowElement.textLength);
            IEditManager(textFlow.interactionManager).setSelectionState(selection);
            textFlow.flowComposer.updateAllControllers();
        }
    ]]>
</fx:Script>

<s:Button label="Select current element" click="selectElementHandler(event)"/>