Edit //__swift/apps/base/javascript/__cp/thirdparty/legacy/core.js :738 aprox.
function LoadTinyMCE() {
if (!$('.tinymce').length) {
return false;
}
$('.tinymce').tinymce({
// General options
script_url : swiftpath + '__swift/apps/base/javascript/__global/thirdparty/TinyMCE/tiny_mce_gzip.php',
selector: 'div.tinymce',
theme : "modern",
browser_spellcheck: true,
paste_data_images: true,
plugins: [
"advlist anchor autolink autosave charmap code contextmenu directionality emoticons",
"fullscreen hr image insertdatetime layer link lists media nonbreaking",
"noneditable pagebreak preview print paste save searchreplace",
"tabfocus table textcolor visualblocks visualchars wordcount"
],
convert_urls: false,
image_advtab: true,
toolbar1: "undo redo | styleselect | bold italic underline | fontsizeselect fontselect | forecolor backcolor | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image",
theme_modern_resizing : true,
content_css : swiftpath + '__swift/apps/base/javascript/__global/thirdparty/TinyMCE/tinymce.css',
});
};