spellchecking

Spell check in Blackberry

Hi, We are making a Web application for Blackberry (ASP.NET). The customer would like to have a spell checking feature when editing text fields in forms (textareas). Does anybody know how could this be done for a web application targeting the Blackberry platform? Thanks. ...

How to disable Chrome spell check on INPUT with HTML or jQuery code?

I have an input in an HTML page <input id="SearchBox" type="text" value="" width="300px" title="Search the card pool" autocomplete="off" maxlength="170"> I would like to switch this off with something like autospellcheck="off". Is there a way to achieve that? Is there also a way to switch this off for Firefox? ...

adobe flex spellchecker for multiple language

I am trying to figure out the best way for doing spellcheck in flex application. I need a support of multiple languages, like: english, russian and so on. Also, I don't need a realtime spellchecking, only in some particular moment(for example, user click button: "check my text"). I found clientside solution here - flex:SpellCheck , but ...

What algorithm gives suggestions in a spell checker?

What algorithm is typically used when implementing a spell checker that is accompanied with word suggestions? At first I thought it might make sense to check each new word typed (if not found in the dictionary) against it's Levenshtein distance from every other word in the dictionary and returning the top results. However, this seems l...

How to find a Word that is enclosed from Html Tags?

I'm programming a spell checker in Javascript in combination with OpenOffice dictionary, and I have a serious problem. I can find whole words using RegEx, but if the word looks like prog<b>ram</b>ing, I can find it if I remove all html tags with the .text() method from jQuery. But how can I replace this word and rebuild the original htm...

Spelling correction for data normalization in Java

I am looking for a Java library to do some initial spell checking / data normalization on user generated text content, imagine the interests entered in a Facebook profile. This text will be tokenized at some point (before or after spell correction, whatever works better) and some of it used as keys to search for (exact match). It would ...

CKEditor with SCAYT over HTTPS gives Security Warning

I've got a CKEditor WYSIWYG text and HTML editor control on an HTTPS/SSL web page. I just today enabled the SCAYT (spell check as you type) feature and now see a Security Warning when the page loads. It seems to be caused by these four files: http://svc.spellchecker.net/spellcheck31/lf/scayt/_base.xd.js http://svc.spellchecker.net/spe...

Solr identifying words as spelled correctly when they're not

I'm following along with the Solr SpellCheck Component documentation, but can't seem to get this to work. The spell checking components seems to be running, but Solr is identifying the word as correctly spelled when it's not. How can I fix this? Example search query results for 'applicatoin' are... <response> <lst name="responseH...

Spelling checker for .NET

Is there anyway to create C# spelling checker without using Office library? I would be happy with the simplest possible solution. ...

pspell global namespace dictionary

Hi there, is it possible to create something like "a global dictionary" for pspell? I tried a lot but i can only create a personal dictionary for languages which are installed. Am im blind, or is there a better way than just insert a word for the global dictionary to the personal dictionary for each language? Best Regards, Beerweasle...

ajax library with editor and spell checker

Recommendations for an text editor and spell checker included in an HTML library ...

Word Spell Check pops up hidden and "freezes" my App

I am using Word's Spell Check in my in house WinForm app. My clients are all XP machines with Office 2007 and randomly the spell check suggestion box pops up behind the App and makes everything "appear" frozen as you cannot get at it. Suggestions? What do other people do to work around this or stop it altogether? Thanks Below is my ...

Text editor with synchronized scrolling and spell check features

Hello! I'm looking for a text editor that have these 2 features available: - Synchronized scrolling: You can have 2 tabs, side by side and you scroll both at the same time. - Spell check as you type (highlight, underline word, spell check on the fly) I have currently been using Notepad++ exactly because of this feature of Synchronized Sc...

php mysql - spelling conversion?

Hi, I need to change UK spelling to US spelling for the content stored in the database(mysql). Is there any way to do this on the db itself? I found various software's(like a word add-ins) but to use these I need to have the data in a doc format, do the changes and export it back to mysql. Please let me know if there is a method using p...

Example code for PyGTKSpell

I'm trying to find examples of PyGTKSpell usage. Googling isn't turning much up. Where can I find some? ...

How to convert InnerText to InnerHtml in Webbrowser Control in C#?

I'm working on a WYSIWYG editor with builtin spell checker Hunspell and online highlighting of misspelled words. I'm using Webbrowser control as a html handler. It's a way easy to spell check text than html in webbrowser control, but following this way I'm losing all html formatting. So the question is: is there any way to spell check bo...

How to spell check python docstring with emacs ?

I'd like to run a spell checker on the docstrings of my Python code, if possible from within emacs. I've found the ispell-check-comments setting which can be used to spell check only comments in code, but I was not able to target only the docstrings which are a fairly python-specific thing. ...

Limiting solr spellchecking based on attributes

I wonder if there is a way to limit the spellchecking to just a part of the index. Example i have an index containing different products used in different countries. when a search is performed i limit the solr query to just return the results for COUNTRY X, however the suggestions that are returned are not limited to COUNTRY X, instead...

What are good .NET spell checking libraries for console apps?

I realize a very similar question was asked on SO in the past, but that was a while ago, and some of the replies no longer work. The first road I went down was the .NET port of Aspell. Problems I ran into were: 1. The website is worthless. Cannot browse source, no binaries available, broken links... 2. Trying to build Aspell on Wind...

What are some strategies to add spell checking to a Google App Engine program?

I'm working on a Google App Engine program that will require some basic spell checking features. Normally iSpell or it's cousins would be options, but I'm not sure that will work in GEA. Are there other strategies/tools that would work in that environment? ...