Modifying TinyMCE option to allow spellcheck

Summary

I’m trying to enable the Spell Check option in TinyMCE on Revo 3.1.2; the only guide I found refers to a plugin that is no longer available. However, on the TinyMCE doc site, they explain how to enable the native browser spell-check option in the context menu instead of the TinyMCE context menu.

specifically

Assign the browser_spellcheck configuration option the value of true to utilize the browser’s native spell check functionality. Disabling the contextmenu option may be required depending on the right-click or context usability requirement.

and then:

tinymce.init({
  selector: 'textarea',  // change this value according to your HTML
  browser_spellcheck: true,
  contextmenu: false
});

How can I pass it through the Manager to enable the feature?

What exact MODX extra are you using for TinyMCE?

If you use TinyMCE Rich Text Editor, there should be a system setting tinymcerte.browser_spellcheck that you can set to Yes.

Thank you very much. I was using the plain “TinyMCE” with the older GUI not the “TinyMCE Rich Text Editor”. replaced with the one you mentioned and browser spell check works. awesome.

This topic was automatically closed 2 days after discussion ended and a solution was marked. New replies are no longer allowed. You can open a new topic by clicking the link icon below the original post or solution and selecting “+ New Topic”.