Actionscript 3 在iPad的StyleableTextField中完成文本选择后调度哪个事件?

Actionscript 3 在iPad的StyleableTextField中完成文本选择后调度哪个事件?,actionscript-3,apache-flex,flex4.5,Actionscript 3,Apache Flex,Flex4.5,需要知道在苹果iPad上完成文本选择后触发的事件。它在桌面上工作 protected function txtEditor_mouseUpHandler(event:MouseEvent):void { if(txtEditor.selectionAnchorPosition != txtEditor.selectionActivePosition){ showNoteToolBar(event);

需要知道在苹果iPad上完成文本选择后触发的事件。它在桌面上工作

protected function txtEditor_mouseUpHandler(event:MouseEvent):void
        {   
            if(txtEditor.selectionAnchorPosition != txtEditor.selectionActivePosition){
                showNoteToolBar(event);
                txtEditor.focusEnabled = true;
                txtEditor.setFocus();
            }
        }

但在iPad和Andriod中,如何通过触摸事件实现?我还需要如何隐藏Spark TextArea?上的所有关联菜单?。为什么在文本区域上完成放置光标或选定文本操作后不触发Touch.End事件?

在StyleableTextField中,在本机菜单框显示复制、粘贴和全选后,不会触发任何flash事件。但是,我们也可以使用RichEditableText来代替。RichEditableText支持所有组件事件的TLF。RichEditableText TLF不允许使用复制、粘贴和selectall工具栏等选项打开本机菜单