I installed TinyMCE and I have the textbox and the functions work(such as , ) but I don’t see the tool box that displays all the icons. Like in this example.
How do I get the images to show? All I have is the textbox. I used the code from the example link and theirs has the images and all I have is the textbox. What part do I edit to be able to see the icons?
//my source link
<script type="text/javascript" src="/tinymce/jscripts/tiny_mce/tiny_mce.js">
tinyMCE.init({
// Example content CSS (should be your site CSS)
content_css : "style12.css",
// Drop lists for link/image/media/template dialogs
template_external_list_url : "/tinymce/examples/lists/template_list.js",
external_link_list_url : "/tinymce/examples/lists/link_list.js",
external_image_list_url : "/tinymce/examples/lists/image_list.js",
media_external_list_url : "/tinymce/examples/lists/media_list.js",
Hey there. A couple of things that should help (I’m convinced the first item will solve your problem):
Whatever is on the last line in your init script should not have a comma. This will cause some browsers to show none (0) of the buttons. For example, you have a comma at the end of your last line:
media_external_list_url : "/tinymce/examples/lists/media_list.js",Make sure your list_url paths are correct.
Regardless of what theme you use, you can still define each button and placement. You can start with the “advanced” theme, paste in the following button templates after the init brackets, and edit it down to what you need for your form (but remember to make sure the last line in the init section does not have a comma):
If you just want the most basic setup, you can use this init: