I am using TinyMCE4.3.10 (as part of Wordpress 4.5.4). I create a custom tinymce editor using the code:
tinyMCE.execCommand("mceAddEditor", false, captionId);
tinyMCE.execCommand('mceAddControl', false, captionId);
"captionId" points to a textarea. Editor works fine but I want to remove few buttons. How do I do that ? I am not using tinyMCE.init() -- mainly because I don't know if I should be using it and editors works anyway.
I can disable using:
tinyMCE.get(captionId).controlManager.setDisabled('bold', true);
but I want to remove it.
Also, tinyMCE.get(captionId).controlManager.get('bold')
returns undefined.
Any help is appreciated.