Topbar
Topbar
Sign in
|
Join
|
Client Center
Home
Products
Client Center
Contact
Purchase
Support forums
»
Products
»
Cute Editor for ASP
»
Re: Can Enter or Select Text in FF
Re: Can Enter or Select Text in FF
07-20-2005, 9:04 AM
sbarrier
Joined on 06-30-2005
Posts 11
Re: Can Enter or Select Text in FF
Reply
Quote
That did not fix it. I've even setup a basic page that contains only the editor code and it doesn't work. I've tried the same page in IE and it works fine. I've cleared the FF cache and even manually deleted it.
<!-- #include file = "includes/editor/editor.asp" --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML> <HEAD> <TITLE> New Document </TITLE> <META NAME="Generator" CONTENT="EditPlus"> <META NAME="Author" CONTENT=""> <META NAME="Keywords" CONTENT=""> <META NAME="Description" CONTENT=""> </HEAD> <BODY> <% Dim editor, sbtnBar Set editor = New CuteEditor sbtnBar = "g_start,Spell,Print,Find,FullPage,CleanCode,Copy,Cut,Paste,Delete,Undo,Redo,g_end," sbtnBar = sbtnBar & "g_start,InsertParagraph,InsertDate,InsertTime,separator,InsertChars,InsertEmotion,InsertText, separator,InsertImage,InsertDocument,g_end,linebreak," sbtnBar = sbtnBar & "g_start,Bold,Italic,Underline,JustifyLeft,JustifyCenter,JustifyRight,JustifyFull,JustifyNone,g_end," sbtnBar = sbtnBar & "g_start,RemoveFormat,separator,forecolor,backcolor,InsertOrderedList,InsertUnorderedList,Indent,Outdent,Superscript,Subscript,StrikeThrough,g_end,linebreak," sbtnBar = sbtnBar & "g_start,InsertHorizontalRule,InsertLink,Unlink,InsertAnchor,SelectAll,AbsolutePosition,BringForward,BringBackward,ToggleBorder,Help,g_end" sbtnBar = sbtnBar & "g_start,FontName,FontSize,Zoom,g_end" editor.ID = "Editor1" editor.FilesPath = "includes/Editor" editor.ImageGalleryPath = iWebRoot & "iforum/uploads" editor.DocumentPath = iWebRoot & "iforum/uploads" editor.MaxImageSize = 100 editor.MaxDocumentSize = 2500 editor.AllowUpload = true editor.ThemeType="Office2003" editor.EditorWysiwygModeCss = "includes/editor/editor.css" editor.Width = "800px" editor.Height = "300px" editor.Template= sbtnBar editor.UseNetSpell = true editor.Draw() %> </BODY> </HTML>
View Complete Thread