Here I am with another question : How to disable the bulit-in context menu? I have this in my toolsfile.xml :
Depending on where I click I still have the old one with all the paste option.
| <contextMenus> |
| <contextMenu forElement="IMG" enabled ="false"> |
| </contextMenu> |
| <contextMenu forElement="TABLE"> |
| <tool Name="ToggleTableBorder" /> |
| <tool Name="SetTableProperties" /> |
| <tool Name="DeleteTable" /> |
| </contextMenu> |
| <contextMenu forElement="TD"> |
| <tool Name="InsertRowAbove" /> |
| <tool Name="InsertRowBelow" /> |
| <tool Name="DeleteRow" /> |
| <tool Name="InsertColumnLeft" /> |
| <tool Name="InsertColumnRight" /> |
| <tool Name="MergeColumns" /> |
| <tool Name="MergeRows" /> |
| <tool Name="SplitCell" /> |
| <tool Name="DeleteCell" /> |
| <tool Name="SetCellProperties" /> |
| </contextMenu> |
| <contextMenu forElement="A" enabled="false"> |
| </contextMenu> |
| <contextMenu forElement="BODY"> |
| <tool Name="Cut" /> |
| <tool Name="Copy" /> |
| <tool Name="PasteFromWord" /> |
| </contextMenu> |
| </contextMenus> |
Depending on where I click I still have the old one with all the paste option.