Hi, I'm having a bit of trouble with the FCKToolbar buttons. I'm using 2.4.3.
I copy some of a MSWord document to my clipboard, open a page with the editor on my site, but the Paste As Word button is disabled.
What's going on?
Also, can someone point me to a link on how to get the Spell-Checker to work?
I copy some of a MSWord document to my clipboard, open a page with the editor on my site, but the Paste As Word button is disabled.
What's going on?
Also, can someone point me to a link on how to get the Spell-Checker to work?
Re: Disabled Paste As Word Button
In my js file I had
FCKConfig.ForcePasteAsPlainText = false;
....
FCKConfig.ForcePasteAsPlainText = true;
Is there a way to change which checkboxes are checked by default in the Paste As Word box?
Re: Disabled Paste As Word Button
FCKEditor/editor/dialog/fck_paste.html
Scroll down to the html and change the input checkboxes to be checked as you prefer. Here are the defaults :
<input id="chkRemoveFont" type="checkbox" checked="checked" />
<label for="chkRemoveFont" fcklang="DlgPasteIgnoreFont">Ignore Font Face definitions</label>
<br />
<input id="chkRemoveStyles" type="checkbox" />
<label for="chkRemoveStyles" fcklang="DlgPasteRemoveStyles">Remove Styles definitions</label>