Encrypted customerID is required to perform migration. Encrypted customerID is provided in the registration email, sent to customer after sign-up for SpellChecker.net account. It also can be obtained later in MyAccount section on SpellChecker.net web site.
Please modify the source code of the page that contains FCKeditor. Syntax may differ dependent on server platform. Following string of code should be added to the editor initialization code:
.ASP (VBScript):
<editor_variable>.Config.ScaytCustomerid="<customerid>"
HTML/JavaScript:
<editor_variable>.Config.ScaytCustomerid="<customerid>";
where <editor_variable> - FCKeditor object; <customerid> - encrypted customerid assigned during registering account on SpellChecker.net web site.
HTML/JavaScript:
<script type="text/javascript"> var sFCKeditorName = 'myFCKeditor'; var oFCKeditor = new FCKeditor(sFCKeditorName); oFCKeditor.BasePath = "editors/FCKeditor/"; // --------------------------------------------------- // assign my customerid // --------------------------------------------------- oFCKeditor.Config.ScaytCustomerid = "1:ua3xw1-2XyGJ3-GWruD3-6OFNT1-oXcuB1-nR6Bp4-hgQHc-EcYng3-sdRXG3-NOfFk"; // --------------------------------------------------- oFCKeditor.Height = 300 ; oFCKeditor.Width = 700 ; oFCKeditor.Value = 'This is an exampl of a sentence with two mispelled words.' ; oFCKeditor.Create() ; </script>
WebSpellChecker (WSC) is a default spell-checker in FCKeditor 2.6.5. To make SpellCheckAsYouType (SCAYT) a default spell-checker in FCKeditor 2.6.5 please follow the instruction below:
1) Open fckconfig.js (...\FCKeditor_2.6.5\fckeditor\fckconfig.js) for edit 2) Change the value of parameter "FCKConfig.SpellChecker" to "SCAYT"
It should look like: FCKConfig.SpellChecker = “SCAYT”.