Here we go again: playing further, I found a solution that I like better: no tinymce call in the main page at all.
One thing for sure: if you came to this page is because you are using Eric's SimpleModal. And, if so, you are, definately, using jQuery.
With that in mind, why not use the jQuery version of tinyMCE?
Okay, so my solution is keep the call to tinyMCE javascript and the initialization in the page in which you are going to use the tinyMCE.
In my case, specifically, I call tinyMCE for an editor in a stand alone modal and, since I use simpleModal to call my displays, I use jQuery load function.
Example:
page being loaded for the modal with the editor: showEditor.asp (asp because I have database access to place information regarding the post about to be edited or type or replied to).
modal hidden div (on main application page): myModal.
on the showEditor page:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<!-- #include virtual="/.../my database functions . asp" -->
<script type='text/javascript' src='/your_path/jscripts/tiny_mce/jquery.tinymce.js' rel='forceLoad'></script>
<script type='text/javascript'>
$(function() {
$('textarea.tinymce').tinymce({
// Location of TinyMCE script
script_url : '/myIncludes/tinyMCE/jscripts/tiny_mce/tiny_mce.js',
// General options
theme : "advanced",
plugins : "pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template",
// Theme options
theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,styleselect,formatselect,fontselect,fontsizeselect",
theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor",
theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen",
theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,pagebreak",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_statusbar_location : "bottom",
theme_advanced_resizing : true,
// Example content CSS (should be your site CSS)
content_css : "css/content.css",
// Drop lists for link/image/media/template dialogs
template_external_list_url : "lists/template_list.js",
external_link_list_url : "lists/link_list.js",
external_image_list_url : "lists/image_list.js",
media_external_list_url : "lists/media_list.js",
// Replace values for the template plugin
template_replace_values : {
username : "Some User",
staffid : "991234"
}
});
});
</script>
</head>
<body>
<textarea id='yourChosenID' class='tinymce' cols='10' rows='10'></textarea>
</body>
</html>
in the page that I call the editor, I process like this:
..... onClick=showEditor();
function showEditor() {
$('#myModal').load('showEditor.asp');
$('#myModal').modal({ your options here });
}
There you go: a complete; non-modified; raw example. Customize it to your taste and pay special attention that the tinymce mentioned on the src javascript call, refers to the jQuery (jquery.tinymce.js) version of it; while the one mentioned on the jQuery function, is the pure tiny_mce.js.