Using 4.3 and WYSIWYG module on Drupal. I would like to autoload SCAYT...I tried this in config.js but it doesn't seem to work:
CKEDITOR.editorConfig = function( config ) {
config.disableNativeSpellChecker = false;
config.scayt_autoStartup = true;
};
I've done a fair share of reading on this but nothing I've tried works. I've noticed it does not autoload on the forum here, either.
Your config.js is ok - scat
Your config.js is ok - scat_autoStartup set to true will enable SCAYT during startup. However, you need to make sure that your config.js is loaded, because some CKEditor installations don't load it and I'm not sure how Drupal does it. Make also sure you cleared cache.
PS. Why did you set disableNativeSpellChecker to false if you want SCAYT?
Piotrek (Reinmar) Koszuliński
CKEditor JavaScript Developer
--
CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Thanks - have since
Thanks - have since discovered that the Drupal module WYWSIWG overrides any customizations in favor of its own settings. The only way to do it it with WYSIWYG module is to create a custom module. Seems like a trainwreck waiting to happen. I've replaced WYSIWYG module with CKEditor module which does have a setting to force SCAYT at startup.