At the moment I have this:
tinyMCE.init({ // General options mode : "exact", elements : "fkField, lkField, ukcField, khField", theme : "advanced", plugins : "table", width : "300", height: "185", // Theme options theme_advanced_buttons1 : "fontsizeselect, bold,italic,underline,bullist, cleanup, |,justifyleft,justifycenter,justifyright", theme_advanced_buttons2 : "tablecontrols", theme_advanced_buttons3 : "", theme_advanced_buttons4 : "", theme_advanced_toolbar_location : "bottom", theme_advanced_toolbar_align : "center", theme_advanced_resizing : false });
This gives me a 300x185 sized editor.
Now in this editor I would like to do this, you can only write until the editor is full. (without scroller)
Thus, you cannot enter more text, and the scroller should not appear (disable scrolling)
At the moment, you can simply create a new line at the bottom of the editor, and it will add a scroller <- which I do not want to do
How can i do this? Is it really impossible? I did some research for some time, but maybe it was just that I was looking wrong.
thanks