Apache flex Flex Contextmenu不支持';不显示所有项目

Apache flex Flex Contextmenu不支持';不显示所有项目,apache-flex,contextmenu,show,visible,Apache Flex,Contextmenu,Show,Visible,我为我的应用程序创建了一个上下文菜单 if (!contextMenu) { contextMenu = new ContextMenu(); } contextMenu.hideBuiltInItems(); contextMenu.addEventListener(ContextMenuEvent.MENU_SELECT,onContextMenuSelecte

我为我的应用程序创建了一个上下文菜单

if (!contextMenu) 
            {
                contextMenu = new ContextMenu();
            }

            contextMenu.hideBuiltInItems();
            contextMenu.addEventListener(ContextMenuEvent.MENU_SELECT,onContextMenuSelected);

            _cmiEdit=new ContextMenuItem("Ändern");
            _cmiEdit.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT,onContextMenuItemSelected);

            _cmiDelete=new ContextMenuItem("Löschen");
            _cmiDelete.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT,onContextMenuItemSelected);


            contextMenu.customItems.push(_cmiEdit,_cmiDelete);
在应用程序中,只有第一个Contextmenuitem可见,我不知道为什么?
在空气中,两者都显示。FlashPlayerVersion11.8似乎是Flex的一个bug!我试图用另外一个菜单项“Über das program”来启动您的代码。新项目出现了!然后我试着把Löschen中的“ö”改成“oe”,结果成功了

<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
           xmlns:s="library://ns.adobe.com/flex/spark" 
           xmlns:mx="library://ns.adobe.com/flex/mx" 
           minWidth="955" minHeight="600" creationComplete="init(event)">

<fx:Script>
    <![CDATA[
        import mx.events.FlexEvent;

        protected function init(event:FlexEvent):void
        {
            var _cmiEdit:ContextMenuItem;
            var _cmiDelete:ContextMenuItem;
            var _cmiAbout:ContextMenuItem;

            if (!contextMenu) 
            {
                contextMenu = new ContextMenu();
            }

            contextMenu.hideBuiltInItems();
            contextMenu.addEventListener(ContextMenuEvent.MENU_SELECT, onContextMenuSelected);

            _cmiEdit = new ContextMenuItem("Ändern");
            _cmiEdit.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, onContextMenuItemSelected);

            _cmiDelete=new ContextMenuItem("Loeschen");
            _cmiDelete.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, onContextMenuItemSelected);

            _cmiAbout=new ContextMenuItem("Über das Programm");
            _cmiAbout.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, onContextMenuItemSelected);


            contextMenu.customItems.push(_cmiEdit, _cmiDelete, _cmiAbout);
        }

        protected function onContextMenuSelected(evt:ContextMenuEvent):void
        {

        }

        protected function onContextMenuItemSelected(evt:ContextMenuEvent):void
        {

        }

    ]]>
</fx:Script>

</s:Application>