TinyMCE Skin - Cirkuit
Example 3 - TinyMCE Editor with one toolbar for simplified text
- Standard functionality for simplified text input (no advanced toolbars)
- Less height
- Utilizes Cirkuit Skin and TinyMCE 3.4
Code
<script type="text/javascript" src="tiny_mce.js"></script>
<script type="text/javascript">
tinyMCE.init({
mode : "specific_textareas",
editor_selector : "tinyMCESimpleText",
skin : "cirkuit",
theme : "advanced",
plugins : "spellchecker,safari,pagebreak,style,layer,save,advlink,advlist,iespell,inlinepopups,insertdatetime,contextmenu,paste,directionality,noneditable,nonbreaking,xhtmlxtras,template",
// Theme options
theme_advanced_buttons1 : "formatselect,fontsizeselect,forecolor,|,bold,italic,strikethrough,|,bullist,numlist,|,justifyleft,justifycenter,justifyright,|,link,unlink,|,spellchecker,|,image",
theme_advanced_buttons2 : "code,paste,pastetext,pasteword,removeformat,|,backcolor,|,underline,justifyfull,sup,|,outdent,indent,|,hr,anchor,charmap,|,media,|,search,replace,|,fullscreen,|,undo,redo",
theme_advanced_buttons3 : "",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left"
});
</script>