Я скачал tinymce 3.4.7, выполнил все необходимые действия, указанные в «Для чайников», но, похоже, даже этого недостаточно. после того, как я добавляю весь этот код в заголовок моей html-страницы, он дает только текстовую область, которая находится в теле страницы. он должен дать полный текстовый редактор, похожий на приведенный пример в пакете, но он не работает для меня
Следующая ссылка, которую я использую. на самом деле не работает для меня.
http://www.tinymce.com/wiki.php/For_Dummies
<head>
<script type="text/javascript" src="D:/tinymce_3.4.7/tinymce/jscripts/tiny_mce/tiny_mce.js" ></script >
<script type="text/javascript">
tinyMCE.init({
mode : "textareas",
theme : "advanced",
plugins : "emotions,spellchecker,advhr,insertdatetime,preview",
// Theme options - button# indicated the row# only
theme_advanced_buttons1 : "newdocument,|,bold,italic,underline,|,justifyleft,justifycenter,justifyright,fontselect,fontsizeselect,formatselect",
theme_advanced_buttons2 : "cut,copy,paste,|,bullist,numlist,|,outdent,indent,|,undo,redo,|,link,unlink,anchor,image,|,code,preview,|,forecolor,backcolor",
theme_advanced_buttons3 : "insertdate,inserttime,|,spellchecker,advhr,,removeformat,|,sub,sup,|,charmap,emotions",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_statusbar_location : "bottom",
theme_advanced_resizing : true
});
</script>
</head>
<body>
<form method="post" action="show.php">
<p>
<textarea name="content" cols="50" rows="15">This is some content that will be editable with TinyMCE.</textarea>
<input type="submit" value="Save" />
</p>
</form>
</body>
</html>