论坛交流
首页办公自动化| 网页制作| 平面设计| 动画制作| 数据库开发| 程序设计| 全部视频教程
应用视频: Windows | Word2007 | Excel2007 | PowerPoint2007 | Dreamweaver 8 | Fireworks 8 | Flash 8 | Photoshop cs | CorelDraw 12
编程视频: C语言视频教程 | HTML | Div+Css布局 | Javascript | Access数据库 | Asp | Sql Server数据库Asp.net  | Flash AS
当前位置 > 文字教程 > Flash教程
Tag:flash cs,flash 8,鼠绘,as,手绘,工具,文字,loading,入门,初学,mc,影片剪辑,声音,mtv,游戏,引导,遮罩,菜单,补间,广告条,时钟,视频教程

用右键菜单来控制显示、隐藏右键菜单

文章类别:Flash | 发表日期:2008-9-21 15:08:33

  

俺这贴的特色在于:用右键菜单来控制显示、隐藏右键菜单!
抛开实际用途不谈,这贴主要有助于对两个类中的属性和方法加深理解!
注:可用性 Flash Player 7
点击浏览该文件
http://www.flash8.net/bbs/UploadFile/2005-1/20051282188969.swf
将代码直接复制到第一帧即可:

//
// 函数:当点击指定菜单项时,显示所有内置菜单项
// 参数:
// currentObject 对右键点击对象的引用
// itemReference 对选定 ContextMenuItem 对象的引用
//
function showBuiltInItems(currentObject:Object, itemReference:ContextMenuItem):Void {
// 临时存储自定义菜单项的路径
var temporaryCustomItems = currentObject.menu.customItems;
for (var everyProp in temporaryCustomItems) {
temporaryCustomItems[everyProp]["enabled"] = true;
}
// 选中项变为不可用
itemReference.enabled = false;
// 临时存储内建菜单项的路径
var temporaryBuiltInItems = currentObject.menu.builtInItems;
// 通过 for..in 循环枚举 ContextMenu 类的 temporaryBuiltInItems 对象的属性,即内置菜单项的所有名称
for (var eachProp in temporaryBuiltInItems) {
// 输出属性名
//trace(eachProp);
// 改变各属性值为true,即显示
temporaryBuiltInItems[eachProp] = true;
}
}
//
// 函数:当点击指定菜单项时,隐藏所有内置菜单项
//
function hideBuiltInItems(currentObject:Object, itemReference:ContextMenuItem):Void {
// 临时存储自定义菜单项的路径
var temporaryCustomItems = currentObject.menu.customItems;
for (var everyProp in temporaryCustomItems) {
temporaryCustomItems[everyProp]["enabled"] = true;
}
// 选中项变为不可用
itemReference.enabled = false;
// 隐藏所有内置菜单项
currentObject.menu.hideBuiltInItems();
}
//
// 创建一个 ContextMenu 类的对象
var firstContextMemu:ContextMenu = new ContextMenu();
// 隐藏指定 ContextMenu 对象中的所有内置菜单项(“设置”除外)
firstContextMemu.hideBuiltInItems();
// 添加新的菜单项
firstContextMemu.customItems.push(new ContextMenuItem("显示菜单", showBuiltInItems));
firstContextMemu.customItems.push(new ContextMenuItem("隐藏菜单", hideBuiltInItems, true, false));
// 将 ContextMenu 对象会应用到根时间轴(或者其他指定的对象)
_root.menu = firstContextMemu;
/*
// 查看 firstContextMemu.customItems 内容
for (var k in firstContextMemu.customItems) {
for (var n in firstContextMemu.customItems[k]) {
trace(firstContextMemu.customItems[k][n]);
}
}
*/
上一篇:{技巧}新春贺年FLASH添加方法的优化 人气:1086
下一篇:{技巧}让 Flash 支持 Wma 人气:1710
视频教程列表
文章教程搜索
 
Flash推荐教程
Flash热门教程
看全部视频教程
购买方式/价格
购买视频教程: 咨询客服
tel:15972130058