I'm having trouble adding plugins to my TinyMCE.
The procedure as far as i understand requires the downloading of the desired plugin (ie. tables)and changing two lines of code in tiny_mce_gzip.php.
line 84 becomes:
$plugins = apply_filters('mce_plugins', array('wordpress', 'autosave', 'wphelp', 'table'));
and line 112 becomes:
$mce_buttons_2 = apply_filters('mce_buttons_2', array('tablecontrols'));
Using the tables plugin form the current version of TinyMce (2.06) does not seem to work.
In order to just see the 'tables' plugin i had to go to sourceforge to find the 2.02 release which makes the tablecontrols visible but does not work properly.
Am I doing the right thing?
If not is there a way to update to the 2.06 TinyMCE version? Are there other ways of creating quickly html tables without coding?