Custom Context Menus in nested movieclips

The ability to add custom context menus to nested movieclip has supposedly been fixed in Flash 8, but for some reason it just isn’t working for me. Is there something that I am missing here:

for(var i=0; i<100; i++){

        var clip:MovieClip = grid_container_mc.grid_mc.attachMovie("box", "box"+i+"_mc", i);

        var seatMenu = new ContextMenu();
        seatMenu.hideBuiltInItems();

        var note = new ContextMenuItem("View Notepad", editNote);
        seatMenu.customItems.push(note);
        function editNote() {
                // do something
        }
        clip.menu = seatMenu;

}

Thanks in advance for any insight you can provide!