To enable FCKeditor on the mail user form, add the following codes at the top of the /layout/theme/admin/mailform.thtml
Text Formatted Code
<script type="text/javascript">
// Setup editor path for FCKeditor JS Functions
geeklogEditorBasePath = "{site_url}/fckeditor/" ;
window.onload = function() {
var oFCKeditor1 = new FCKeditor( 'message' ) ;
oFCKeditor1.Config['CustomConfigurationsPath'] = geeklogEditorBaseUrl + '/fckeditor/myconfig.js';
oFCKeditor1.BasePath = geeklogEditorBasePath;
oFCKeditor1.ToolbarSet = 'editor-toolbar2';
oFCKeditor1.Height = 200 ;
oFCKeditor1.ReplaceTextarea() ;
}
</script>
And change line that has 'textarea' to the following:
Text Formatted Code
<td style="width:100%;"><textarea rows="12" id="message" name="message" cols="44"></textarea></td>
In the same way, you can enable FCKeditor to any textarea by using this method. For example, I did this to my blockeditor.thtml.
Hope this helps!
Sam