I am trying to use a tinyMCE rich text box in my module
I have read around the forum unitl my poor little brain is spinning !

Sadly the code I have used (below) only produces a basic rich text box with bold underline, italics, cleanup, redo, undo, unordered and ordered lists.
Please can anyone suggest how I call more of the buttons as per the doc content window of the pages in the manager.
// New post
// Get access to template variable function (to output the RTE)
include_once($modx->config['base_path'].'manager/includes/tmplvars.inc.php');
// invoke OnRichTextEditorInit event
$replace_richtexteditor = array('postContent',);
if(is_array($replace_richtexteditor))
{
$evtOut = $modx->invokeEvent('OnRichTextEditorInit',
array('editor' => $modx->config['which_editor'],
'elements' => $replace_richtexteditor));
if(is_array($evtOut))
{
echo implode("", $evtOut);
}
}
kind regards
Steve