I like the Simple toolbar option but I'd like to disable the Font Name and Font Size buttons.
Here is my code (which doesn't disable the buttons btw):
<%
Dim editor
Set editor = New CuteEditor
editor.ID = "Editor1"
editor.Text = vContent
editor.FilesPath = "CuteEditor_Files"
editor.AllowUpload = true
editor.ImageGalleryPath = vImageEditorPath
editor.MaxImageSize = 50
editor.AutoConfigure = "simple"
editor.DisableItemList = "FontName, FontSize, Save, Help"
editor.ShowLogo = false
editor.Width = 740
editor.Height = 300
editor.Draw()
%>
What am I doing wrong?