Hi,
I am trying to set in CKeditor option "Ignore Words with Numbers" to be enabled by default.
The reason behind this is because I would like to ignore errors generated on words like chemistry formulas (example: NH4). I tried to play with config files as well as scayt's options.js in dialogs folder with no luck.
Anyone can give me a clue or a hint ? Just to clarify, I am using CKeditor and SCAYT plugin in Drupal 6, CKeditor loaded via WYSIWYG module.
Thanks in advance!
I am trying to set in CKeditor option "Ignore Words with Numbers" to be enabled by default.
The reason behind this is because I would like to ignore errors generated on words like chemistry formulas (example: NH4). I tried to play with config files as well as scayt's options.js in dialogs folder with no luck.
Anyone can give me a clue or a hint ? Just to clarify, I am using CKeditor and SCAYT plugin in Drupal 6, CKeditor loaded via WYSIWYG module.
Thanks in advance!

Re: SCAYT Ignore Words with Numbers
http://drupal.org/project/issues/wysiwyg?categories=All
Re: SCAYT Ignore Words with Numbers
Re: SCAYT Ignore Words with Numbers
Re: SCAYT Ignore Words with Numbers
In current version of SCAYT plug-in for CKEditor there is no ability to set options through CKEditor parameters.
You can do this through SCAYT API after SCAYT is initialized for the editor. Please review sample code below. It sets allCaps and mixedCase options for the editor1
if (CKEDITOR.plugins.scayt.isScaytReady(CKEDITOR.instances.editor1) != false) { var scayt_control = CKEDITOR.plugins.scayt.getScayt( CKEDITOR.instances.editor1); var opts = scayt_control.option(); opts.allCaps = 1; opts.mixedCase = 1; scayt_control.option(opts); }WebSpellChecker.net team
Re: SCAYT Ignore Words with Numbers
Re: SCAYT Ignore Words with Numbers
... var dialogDefiniton = { title : lang.title, minWidth : 360, minHeight : 220, onShow : function() { var dialog = this; dialog.data = editor.fire( 'scaytDialog', {} ); var opts = scayt_control.option(); opts.allCaps = 1; opts.mixedCase = 1; opts.ignoreDomainNames = 1; opts.mixedWithDigits = 1; dialog.options = dialog.data.scayt_control.option(opts); ....