Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to create a custome color dropdown/split button in TinyMCE. The API seems capable of this but I have not had success in my tests. I am trying to use the createColorSplitButton method. Here is my code :

<script type="text/javascript">

tinyMCE.init({ 
    mode : "exact", 
    elements : "content",
theme : "advanced",
theme_advanced_buttons1 : "fontselect,fontsizeselect,custombackground", 
theme_advanced_buttons2 : "", 
theme_advanced_buttons3 : "",

setup : function(ed) {
    ed.controlManager = new tinymce.ControlManager(ed);

    ed.controlManager.createColorSplitButton('custombackground', {
        title : 'Background Color',
        image : 'icon.gif',
        onclick : function() {
            // change iFrame background 
        }
    });
}
}); 

</script>
<textarea id="content" name="content" cols="50" rows="15">This is some content that will be editable with TinyMCE.</textarea> 

So I need to get this to add a new color split button to the toolbar. After that I would need the split button to actually change the color of the iFrame. Any help would be greatly appreciated !

EDIT : I have created a fiddle for anyone interested in helping : http://fiddle.tinymce.com/dwcaab

share|improve this question
1  
i will give you a hand i f you create a tinymce fiddle with what you tried already – Thariama Nov 20 '12 at 9:35
Ive added the fiddle here : fiddle.tinymce.com/dwcaab – AyexeM Nov 20 '12 at 17:31
+1 for the fiddle – Thariama Nov 21 '12 at 10:04

1 Answer

up vote 2 down vote accepted

I have created a tinymce fiddle on base of yours. Please check this and tell me if this is what you want.

share|improve this answer
This is exactly what I needed. This is amazing! I shall name my first born in your honor! – AyexeM Nov 21 '12 at 15:28
hehe, glad to have been able to help. I remember myself two years ago trying to create a custom tinymce dropdown-button which took me pretty long – Thariama Nov 21 '12 at 15:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.