Hello....
I got a problem here:
Dim oFCKeditor
Set oFCKeditor = New FCKeditor
oFCKeditor.BasePath = "/FCKeditor/"
oFCKeditor.Config("CustomConfigurationsPath") = "http://newmcp/thiel/myconfig.js"
'oFCKeditor.Config("CustomConfigurationsPath") = "/myconfig.js"
oFCKeditor.ToolbarSet = "Default"
oFCKeditor.Create "FCKeditor"
The first one works, the second one doesn't.
myconfig.js is on the root of the web.
Inside my myconfig.js ther alsop the same problems:
FCKConfig.DocType = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">' ;
FCKConfig.SkinPath = '/fckeditor/editor/skins/silver/' ;
FCKConfig.AutoDetectLanguage = true ;
FCKConfig.DefaultLanguage = 'de' ;
FCKConfig.ContentLangDirection = 'ltr' ;
FCKConfig.EditorAreaCSS = 'http://newmcp/thiel/styles.css' ;
FCKConfig.EditorAreaCSS = 'styles.css' ;
The first EditorAreaCSS works, the second one not.
With FCKConfig.StylesXmlPath i didn't get a result, not with the webadress and not with local path.
Does anybody have an idea ?
Can i read the used paths from FCKEditor with ASP ?
Michael
Sun, 02/26/2006 - 04:39
#1
RE: Getting mad with CustomConfigurationsPath