You can very easily populate the color dropdowns with your own custom colors via the editor's ToolsFile.xml, as shown in the example below:
| ToolsFile.xml |
Copy Code |
|
<colors> <color value="#FF00EE" /> <color value="red" /> <color value="green" /> <color value="blue" /> </colors> |
You can remove some values from the Font Size dropdown by predefining again the Font Size dropdown by using the ToolsFile.xml, i.e.
| ToolsFile.xml |
Copy Code |
|
<fontSizes> <size value="1" /> <size value="5" /> <size value="7" /> </fontSizes> |
The code above will regenerate the Font Size with the following three custom sizes '1', '5', '7'.
Please note that the dropdown list height is hardcoded. For example if you add more to the existing ones a scrollbar will appear, but if you leave only 1 the initial height will remain the same and the unused space will remain empty.