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_spellcheckconfiguration option the value oftrueto utilize the browser’s native spell check functionality. Disabling thecontextmenuoption 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
});