Member
If you go to the TinyMCE site (http://tinymce.moxiecode.com/) and download the full 2.01 release, there is the IESpell plugin that you can add to your editor.
To easily add buttons and plugins to WordPress, check out hte "Advanced editing for WordPress 2.0" plugin" (http://blog.labnotes.org/2005/12/26/advanced-editing-for-wordpress-20/).
It easily allows you to add extend the rather minimal WP 2.0 implementation. This plugin has come in very handy.
It is easy to take this plugin and also add a 2nd or 3rd line of buttons.
Simply add another filter for mce_buttons_2, and if you need three lines, also mce_buttons_3:
add_filter("mce_buttons_2", "extended_editor_mce_buttons2", 0);
function extended_editor_mce_buttons2($buttons) {
return array( /* second row buttons */ );
}
Poste