Flex4中添加自定义右键菜单

下面这个例子给Flex的右键添加一个自定义菜单,并且在点击菜单内容时,执行事件

1
var  copyrightMenuItem:ContextMenuItem = new  ContextMenuItem( "菜单内容" , true );<br>
1
2
3
4
5
copyrightMenuItem.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, function (e:ContextMenuEvent){
     Alert.show((e.currentTarget as  ContextMenuItem).caption);
});
contextMenuCustomItems: Array  = FlexGlobals.topLevelApplication.contextMenu.customItems;
contextMenuCustomItems.push(copyrightMenuItem);

 

我使用的是Flex4,如果是Flex3,需要把var contextMenuCustomItems:Array = FlexGlobals.topLevelApplication.contextMenu.customItems;

替换为var contextMenuCustomItems:Array = application.contextMenu.customItems;

相关文章

一:display:flex布局display:flex是一种布局方式。它即可以...
1. flex设置元素垂直居中对齐在之前的一篇文章中记载过如何...
移动端开发知识点pc端软件和移动端apppc端软件是什么,有哪些...
最近挺忙的,准备考试,还有其他的事,没时间研究东西,快周...
display:flex;把容器设置为弹性盒模型(设置为弹性盒模型之后...
我在网页上运行了一个Flex应用程序,我想使用Command←组合键...