FvContextMenuUtils provides control over the AsWing components in the Flash Player context menu.
You can use the methods and properties of the Flash ContextMenu class to add custom menu items, control the display of the built-in context menu items.
Example
public function test() : Void { var m : ContextMenu = new ContextMenu(); m.customItems.push( new ContextMenuItem( "submenuA", _proxy, false, true ) ); m.customItems.push( new ContextMenuItem( "submenuB", _proxy, false, true ) ); m.customItems.push( new ContextMenuItem( "submenuC", _proxy, false, false ) ); m.hideBuiltInItems(); var button : Jbutton = new JButton( "test" ); FvContextMenuUtils.applyContextMenu( button, m ); }