I am using the following code in my ASP page:
Dim editor
Set editor = New CuteEditor
editor.ID = "Editor1"
editor.Text = Content
editor.FilesPath = "CuteEditor_Files"
editor.EditorBodyStyle = "font:normal 12px arial;"
editor.EditorWysiwygModeCss = "asp.css"
editor.ImageGalleryPath = ImagePath & UserID
editor.FlashGalleryPath = ImagePath & UserID
editor.MediaGalleryPath = ImagePath & UserID
editor.FilesGalleryPath = ImagePath & UserID
editor.TemplateGalleryPath = TemplatePath & UserID
editor.SecurityPolicyFile = "default.config"
editor.MaxImageSize = 1000
editor.Width = 800
editor.TemplateItemList = "FontName, FontSize, Codes, Bold, Italic, Underline, StrikeThrough, ForeColor, BackColor, Justify, JustifyLeft, JustifyCenter, JustifyRight, JustifyFull, JustifyNone, Indent, Outdent, Superscript, Subscript, RemoveFormat, Spelling, InsertHorizontalRule, InsertLink, Unlink, InsertImage"
editor.Draw()
When ever I click on one of the items in the dropdown list I get the following alert: Command 'Codes' Is Not Supported Or Not Implemented
Please help!