Sure...nothing exciting though...
import flash.ui.ContextMenu;
...
private var _contextMenu:ContextMenu;
...
private function init() : void {
_contextMenu = new ContextMenu();
_contextMenu.hideBuiltInItems();
_contextMenu.clipboardMenu = true; // compiler error
_contextMenu[ "clipboardMenu" ] = true; // runtime error
}
I want to turn the clipboard menu on in some situations where it normally does
not show. Right now I had my own "Copy value" and other menu items like the
clipboard menu but I have to append "value" to the name and hand code the
functionality when I'd rather just see if I can use that clipboard menu built
in.
The main issue is that according to the Flex 3.5 documentation, this
'clipboardMenu' flag should be available but it does not appear to me as though
it is.
http://livedocs.adobe.com/flex/3/langref/flash/ui/ContextMenu.html#clipboardMenu
Thanks for any help!
- Todd