OK then. Since this is getting plenty of views, but no answers, I will assume that others may or may not have interest in doing this too, but dont know how. Will, I decided to grow a pair of cajones and finger it out on my own.
For those of you interested, it was a fairly simple fix, just editing two files, nothing else. And those files are the following:
manager/actions/mutate_content.dynamic.php
Line 571 add
id="mceSummary" after
<textarea
then
<a style=" text-decoration:none; color:#5F8D00" class="comment" href="javascript:toggleEditor(’mceSummary’);">.:: <img src="media/style/<?php echo $manager_theme ? "$manager_theme/":""; ?>images/icons/logging.gif" alt="Editor" align="absmiddle"> Editor ::.</a>
before
</td>
so it should now look like:
<td valign="top"><textarea id="mceSummary" name="introtext" class="inputBox" rows="3" style="width:300px;" onchange="documentDirty=true;"><?php echo htmlspecialchars(stripslashes($content['introtext']));?></textarea> <img src="media/style/<?php echo $manager_theme ? "$manager_theme/":""; ?>images/icons/b02_trans.gif" onmouseover="this.src='media/style/<?php echo $manager_theme ? "$manager_theme/":""; ?>images/icons/b02.gif';" onmouseout="this.src='media/style/<?php echo $manager_theme ? "$manager_theme/":""; ?>images/icons/b02_trans.gif';" alt="<?php echo $_lang['document_summary_help']; ?>" onclick="alert(this.alt);" style="cursor:help;" spellcheck="true"/><br><a style=" text-decoration:none; color:#5F8D00" class="comment" href="javascript:toggleEditor('mceSummery');">.:: <img src="media/style/<?php echo $manager_theme ? "$manager_theme/":""; ?>images/icons/logging.gif" alt="Editor" align="absmiddle"> Editor ::.</a></td>
assets/plugins/tinymce212/tinymce.functions.php
Line 211 add
/*--------------// TinyMCE for Summary //---------------*/
// General options
tinyMCE.init({
mode : "none",
theme : "advanced",
editor_selector : "mceSummary",
plugins : "advimage,emotions,paste",
theme_advanced_toolbar_align : "left",
language : 'en',
// Theme options
theme_advanced_buttons1 :
"pastetext,pasteword,|,emotions,image,bold,italic,underline,separator,strikethrough,bullist,numlist,undo,redo,foreco
lor,backcolor",
theme_advanced_buttons2 : ""
});
function toggleEditor(id) {
if (!tinyMCE.getInstanceById(id))
tinyMCE.execCommand('mceAddControl', false, id);
else
tinyMCE.execCommand('mceRemoveControl', false, id);
}
/*-------------------// end //-------------------------*/
Between
});
and
{$tinyCallback}
Now under the the Summary field, you should see a new icon, that when clicked, will show your editor.
My copy of TinyMCE was v2.1.2, but it should work the same in later versions if placed between the last comment noted.
Hope this is of use to someone else...