Hi Guys
I have problem in starting the editor in maximized mode. I've tried some tricks, but none of them works!
I think that this should work, but it wont ::
I want to maximize the editor at startup!
Any Idea?
Thnx
Shahab
I have problem in starting the editor in maximized mode. I've tried some tricks, but none of them works!
I think that this should work, but it wont ::
oFCKeditor.Config['FullPage'] = true ;
I want to maximize the editor at startup!
Any Idea?
Thnx
Shahab

Re: howto Start FCKEditor in Maximized mode?
I just figured out what to do to make it work.
Add the following code to the page that you are using to call the editor.
<script type="text/javascript"> function FCKeditor_OnComplete( editorInstance ) { var oEditor = FCKeditorAPI.GetInstance( editorInstance.Name ) ; oEditor.Commands.GetCommand('FitWindow').Execute(); } </Script>I found this information while looking through the API stuff on the fckeditor wiki and made a slight mod so it finds it's own instance all by it self.
editorinstance.Name
I am running version 2.5 of the editor. Let me know if it works.
Andy
Re: howto Start FCKEditor in Maximized mode?
I am sure that it will work!
Re: howto Start FCKEditor in Maximized mode?
Re: howto Start FCKEditor in Maximized mode?
Thanks alot,
Kate