Copy link to clipboard
Copied
Hi,
I have a textarea in my panel and the spellcheck is turned on (I see the red curly underlining).
Is that the chrome spellcheck? Is there a way to turn it off ?
Thanks Stefan
sberic's answer worked for me
<textarea spellcheck="false">
Copy link to clipboard
Copied
Command line parameter ?
disable-asynchronous-spellchecking
See chromium/chrome_switches.cc at master · adobe/chromium · GitHub
Copy link to clipboard
Copied
Added this to the manifest, restarted InDesign but still no luck:
<CEFCommandLine>
<Parameter>-disable-asynchronous-spellchecking</Parameter>
</CEFCommandLine>
The curly underlining still shows.
Any other ideas ?
Thanks Stefan
Copy link to clipboard
Copied
Well it should be <Parameter>--disable-asynchronous-spellchecking</Parameter> with -- and not just - but I just tried that and it didn't work.
There is an experimental spell flag mentioned in that file but I highly doubt that will work.
I don't have any other ideas, maybe someone else will have.
Copy link to clipboard
Copied
You should be able to handle this in your HTML. Take a look at this StackOverflow answer.
Copy link to clipboard
Copied
sberic's answer worked for me
<textarea spellcheck="false">
Copy link to clipboard
Copied
Works for me :
<textarea spellcheck="false">
Thank you very matsch!
Stefan