how to disable some items on right click

Last post 04-12-2010, 7:59 PM by wolf11th. 1 replies.
Sort Posts: Previous Next
  •  04-12-2010, 7:31 PM 60029

    how to disable some items on right click

    is there anyway disable  some of the right click items?
    thx
     
     
  •  04-12-2010, 7:59 PM 60030 in reply to 60029

    Re: how to disable some items on right click

    found the solution in Context Menu section of the developer's guide.
     
    /CuteEditor/Configuration/ContextMenuMode folder
     
    <?xml version="1.0" encoding="utf-8" ?>
    <configuration>
    <!--definition see shared/common.config-->
     <contextmenus>
      <ref name="Undo" />
      <spliter />
      <ref name="Cut" />
      <ref name="Copy" />
      <ref name="Paste" />
      <ref name="Delete" />
      <spliter />
      <ref name="SelectAll" />
      <ref name="EditGroup" />
      <ref name="FormattingGroup" />
      <ref name="InsertGroup" />
      <special type="tags"/>
      <special type="verbs"/>
      <special type="relative"/>
      <special type="style" />
      <special type="property" />
     </contextmenus>
    </configuration>

View as RSS news feed in XML