Hello
I have to issues I can't find an answer for:
1. I want to load the fck editor initially in source code mode, so that the user has to press the button to switch to the wysiwyg mode. The button is already there.
2. When I'm in source code mode I want the buttons to be enabled. So that I can still mark text as bold and so on. I'm only using the bare minimum... Thinking about that, maybe a bbcode editor would be better, but that's now too late. I hope it's though possible.
Thanks for the help.
I have to issues I can't find an answer for:
1. I want to load the fck editor initially in source code mode, so that the user has to press the button to switch to the wysiwyg mode. The button is already there.
2. When I'm in source code mode I want the buttons to be enabled. So that I can still mark text as bold and so on. I'm only using the bare minimum... Thinking about that, maybe a bbcode editor would be better, but that's now too late. I hope it's though possible.
Thanks for the help.

Re: Display "SOURCE" initially
I just solved this problem (your question 1).
Insert into the top of your page:
<script type="text/javascript"> function FCKeditor_OnComplete( editorInstance ){ var oEditor = FCKeditorAPI.GetInstance(editorInstance.Name); oEditor.Commands.GetCommand('Source').Execute(); } </script>This sets up so that it will automatically set the Source button to be enabled as soon as the code which creates the instance of FCKeditor completes.
-Nick