[AS3]AS3.0禁止右键显示功能无右键菜单写法
[AS3]AS3.0禁止右键显示功能无右键菜单写法,as3禁止右键,as3右键
想放上一些自己的资料
- var contextMeumItem1:ContextMenuItem =new ContextMenuItem("酷播官方");
- var contextMeumItem2:ContextMenuItem =new ContextMenuItem("CuPlayer.com");
- var myMenu:ContextMenu =new ContextMenu();
- myMenu.hideBuiltInItems();
- myMenu.customItems.push(contextMeumItem1);
- myMenu.customItems.push(contextMeumItem2);
- contextMenu=myMenu;
什么都不填写
- var b:ContextMenuBuiltInItems = new ContextMenuBuiltInItems();
- b.loop = false;
- b.print = false;
- b.play = false;
- var a:ContextMenu = new ContextMenu();
- a.builtInItems = b;
- a.hideBuiltInItems();
- this.contextMenu = a;
热门文章推荐
- [HLS]做自己的m3u8点播系统使用HTTP Live Streaming(HLS技术)
- [FMS]FMS流媒体服务器配置与使用相关的介绍
- [AS3]什么是M3U8,与HTML5的区别是什么
- AS2.0 让flash自适应全屏,并且不自动缩放
- [AS3]as3.0的sound类常用技巧整理
- [AS3]as3与ByteArray详解、ByteArray介绍、ByteArray用法
- 关于RTMP,RTMPT,RTMPS,RTMPE,RTMPTE协议的介绍
- [JS]分享浏览器弹出窗口不被拦截JS示例
请稍候...