我为我的应用程序创建了一个上下文菜单。
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);
在应用程序中,只有第一个上下文菜单项目可见,我不知道为什么?在《空中》中,两者都被展示出来。FlashPlayer11.8版
1条答案
按热度按时间pbossiut1#
这似乎是Flex的一个错误!我试着用另一个菜单项“äber das Programm”来开始您的代码。新的物品出现了!然后我试着用“OE”来改变Löschen中的“ö”,结果奏效了!