Я вызывал init при загрузке, а затем попытался сделать это снова после того, как я заполнил текст ... что в итоге мне помогло, так это назвать его ПОСЛЕ того, как я заполнил свой текстовый ящик.
if (text != null) {
text = text.replace(/\n/g, '<br />');
$('#editcontent').val(text);
}
else {
text = '<div style="margin: 10%"><h2>This is a blank presentation. Click edit.</h2></div>';
$('#editcontent').val('');
}
$('textarea#editcontent').tinymce({
mode : "textareas",
theme : "advanced",
plugins : "autolink,lists,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,advlist",
theme_advanced_buttons1 : "formatselect,bold,italic,underline,strikethrough,forecolor,backcolor,|,justifyleft,justifycenter,justifyright,justifyfull,fontsizeselect,undo,redo,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,charmap",
theme_advanced_buttons2 : '',
theme_advanced_buttons3 : "",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_statusbar_location : "none",
theme_advanced_resizing : true,
});