Código HTML:
//
flash_cm = new ContextMenu(menuHandler); //use the ContextMenu class to create an object/instance
flash_cm.hideBuiltInItems();
flash_cm.customItems.push(new ContextMenuItem("MENU1", itemHandler1)); //add two items (Label/ handler)
flash_cm.customItems.push(new ContextMenuItem("MENU2", itemHandler2));
flash_cm.customItems.push(new ContextMenuItem("MENU3", itemHandler3));
flash_cm.customItems.push(new ContextMenuItem("MENU4", itemHandler4));
flash_cm.customItems.push(new ContextMenuItem("MENU5", itemHandler5));
flash_cm.customItems.push(new ContextMenuItem("MENU6", itemHandler6));
flash_cm.customItems.push(new ContextMenuItem("MENU7", itemHandler7));
flash_cm.customItems.push(new ContextMenuItem("MENU8", itemHandler8));
flash_cm.customItems.push(new ContextMenuItem("MENU9", itemHandler9));
flash_cm.customItems.push(new ContextMenuItem("MENU10", itemHandler10));
var showItem:Boolean = true;
function itemHandler1(obj:Object, item:ContextMenuItem) {
loadMovie("arquivo", _root.clip);
}
function itemHandler2(obj:Object, item:ContextMenuItem) {
loadMovie("arquivo", _root.clip);
}
function itemHandler3(obj:Object, item:ContextMenuItem) {
loadMovie("arquivo", _root.clip);
}
function itemHandler4(obj:Object, item:ContextMenuItem) {
loadMovie("arquivo", _root.clip);
}
function itemHandler5(obj:Object, item:ContextMenuItem) {
loadMovie("arquivo", _root.clip);
}
function itemHandler6(obj:Object, item:ContextMenuItem) {
loadMovie("arquivo", _root.clip);
}
function itemHandler7(obj:Object, item:ContextMenuItem) {
loadMovie("arquivo", _root.clip);
}
function itemHandler8(obj:Object, item:ContextMenuItem) {
loadMovie("arquivo", _root.clip);
}
function itemHandler9(obj:Object, item:ContextMenuItem) {
loadMovie("arquivo", _root.clip);
}
function itemHandler10(obj:Object, item:ContextMenuItem) {
loadMovie("arquivo", _root.clip);
}
_root.menu = flash_cm;
//
stop();
Colocalo tal y como esta y editalo a tus necesidades saludosss