Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a problem with the following Flash AS3-code:
When I change "Delete1" to "Delete", the menu item disappears.
When I call it anything else but delete, then it reappears.
Why? It also occurs when I comment out hideBuiltInItems...

// create new context menu
var mymenu:ContextMenu = new ContextMenu();
mymenu.hideBuiltInItems(); // hide items like Zoom, Play, Loop etc

// create new menu item and add it to the right click menu
var frame2item:ContextMenuItem = new ContextMenuItem("Delete1");
frame2item.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, doFrame2);
mymenu.customItems.push(frame2item);
share|improve this question

1 Answer

up vote 2 down vote accepted

See the documentation of ContextMenuItem. You can't use Delete. It's probably a waste of time to circumvent it; consider renaming it something more specific, like "Delete Ash Diffusers". From the documentation:

The following captions are not allowed, but the words may be used in conjunction with other words to form a custom caption (for example, although "Paste" is not allowed, "Paste tastes great" is allowed):

  • Save
  • Zoom In

[...]

  • Delete
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.