Hi guys
First of all - fantastic editor! It took a little fiddling to get just right (as part of a CMS), but it's working very nicely now.
My question is: I want the editing box to be larger - especially vertically (so more of a square than a rectangle).
Is this something I can do on the fly? I'm using the javascript method to insert it into an HTML page.
Thanks!
Mark
First of all - fantastic editor! It took a little fiddling to get just right (as part of a CMS), but it's working very nicely now.
My question is: I want the editing box to be larger - especially vertically (so more of a square than a rectangle).
Is this something I can do on the fly? I'm using the javascript method to insert it into an HTML page.
Thanks!
Mark
RE: Increase Window Size?
Thanks Denny! I'll give that a go!
RE: Increase Window Size?
Add the following below where it says:
oFCKeditor.Value = 'This is some..."
oFCKedior.Width = 400;
oFCKedior.Hight = 200;
but above the:
oFCKeditor.Create();
You can change the 400 & 200 to whatever you want, on the fly if you wish. Be aware that if you change the size on the same instance, users may have to clear their cache and reload before they see the 'changed sized' window.
Only experimentation will tell... =] Good Luck!
RE: Increase Window Size?
RE: Increase Window Size?
oFCKeditor.Width = 400 ;
oFCKeditor.Height = 800 ;