Did u put this in the head of your document? <script> function FCKeditor_OnComplete( editorInstance ) { var oCombo = document.getElementById( 'cmbSkins' ) ;
// Get the active skin. var sSkin = editorInstance.Config['SkinPath'] ; sSkin = sSkin.match( /[^\/]+(?=\/$)/g ) ;
You might want to try loading in some default text. I was having an issue of the toolbar not showing up if there is no default text in the textarea. I solve this by putting in a or some simply directions that can be easily deleted.
RE: Internet Explorer error
<script>
function FCKeditor_OnComplete( editorInstance )
{
var oCombo = document.getElementById( 'cmbSkins' ) ;
// Get the active skin.
var sSkin = editorInstance.Config['SkinPath'] ;
sSkin = sSkin.match( /[^\/]+(?=\/$)/g ) ;
oCombo.value = sSkin ;
oCombo.style.visibility = '' ;
}
</script>
If you did.. take it out. u dont need it
RE: Internet Explorer error
http://www.fckeditor.net/demo
RE: Internet Explorer error
RE: Internet Explorer error
RE: Internet Explorer error
RE: Internet Explorer error
http://www.winguides.com/registry/display.php?id=799
RE: Internet Explorer error
My user agent string is exactly the same as yours:
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322)
So maybe hacking your user agent string didn't solve the problem?
RE: Internet Explorer error
My string only said MSIE;
RE: Internet Explorer error
RE: Internet Explorer error
For a moment there I was thinking about the .NET framework but you obviously have the same as I have.
RE: Internet Explorer error
FCKConfig.ToolbarSets["MyToolbar"] = [
['FontFormat','FontName','FontSize'],
['Rule','Image','Link','Unlink'],
] ;
RE: Internet Explorer error
I think its having problems with my browser string
RE: Internet Explorer error
Im having the same problem. Works in FF not in IE. Same JS error.
However the online demo does work. I am using the default fckconfig.js.