I would donate some money to the project to have someone build a plugin to change the height of the edito dynamically.
This is already in TinyMCE and it's a really cool feature. FCKeditor is better tho so I'd like to see it get in here.
Take a look:
http://tinymce.moxiecode.com/example_fu ... ample=true
I could probably do it myself, but I don't have the time
Thu, 10/27/2005 - 13:26
#1
RE: Can I sponsor a plugin??
RE: Can I sponsor a plugin??
Anyone else have a suggestion?
RE: Can I sponsor a plugin??
Ah yes. Someday I will subscribe to SF so I get a better search interface...
At any rate, here is a function and a button and a form field you should be able to cut'n'paste into your page and have work. Just change the 'pageText' to whatever the name of your instance is and viola, resizing editor!
I expect payment in euros. I will send the swiss account # privately.
/* begin the function and whatnot */
<script language="javascript">
function chngSz(daInstance,daAmount,frmCurSize) {
wee = document.getElementById(daInstance+"___Frame"); wee.height = wee.height - daAmount;
document.getElementById(frmCurSize).value = wee.height;
}
</script>
<input type="button" name="changeHeight" value="changeH" onClick="javascript:chngSz('pageText',25,'daCurSize');">
<input type="text" size="4" id="daCurSize">