|
Custom
context menus
The ToolsFile can include contextMenus tag, which
allows you to change the default context menus and specify custom ones for
the various HTML elements. You can also disable the context menu for
certain elements (e.g. for tables).
<contextMenus>
<contextMenu forElement="A" enabled="false"></contextMenu>
<contextMenu forElement="IMG"> <tool name="Cut"/> <tool name="Copy"/> <tool name="Paste"/> </contextMenu>
<contextMenu forElement="P"> <tool name="JustifyLeft"/> <tool name="JustifyCenter"/> <tool name="JustifyRight"/> <tool name="JustifyFull"/> </contextMenu> </contextMenus>
|