Spell Checker version 1.0 has been released April 24, 2008!
Spell Checker is a REALbasic Class that allows a REALbasic programmer to easily add cross platform spell checking capability to their applications.
Comes with a 150,000 word English dictionary.
Spell Checker also provides simple dictionary management (add, delete words).
// REALbasic Sample Use
Dim cResults as new clsSpellCheckResult
app.SpellChecker().Lock()
app.SpellChecker().Clear()
app.SpellChecker().Content() = strSource
app.SpellChecker().Run(cResults)
app.SpellChecker().Unlock()
for i = 0 to cResults.GoodWords()
lstResults.AddRow "+" + cResults.GoodWord(i)
next
for i = 0 to cResults.BadWords()
lstResults.AddRow "-" + cResults.BadWord(i)
next