Lee Ann, maybe you want to give this a try, assuming you have MS Word.
I didn't make this up, it's from a guy on a motorcycle forum I go to. I didn't try it either, but the guy is pretty bright, so...
I came across a nice article in pcmagazine Sept 3, 2002, Page IP06 (User to User). Follow the steps below to have MSWord open up to use a spelling checker while on the web or on this discussion group. This assumes you have a little pc savvy. I will try to simplify it as much as possible. Here goes:
1. Open up notepad, (Start/Run/ type notepad and hit enter) and copy the following text and then paste in notepad:
oShell= new
ActiveXObject("WScript.Shell");
oShell.SendKeys( "^c" ); // copy
oWord= new ActiveXObject("Word.Application");
oWord.Visible= true;
oWord.Documents.Add();
oWord.Selection.Paste();
oWord.ActiveDocument.CheckSpelling();
oWord.Selection.WholeStory();
oWord.Selection.Copy();
oWord.ActiveDocument.Close(0);
oWord.Quit();
var nRet= oShell.Popup( "Apply changes?nClick OK to replace all selected text.", 0, "Spell Check Complete", 33 );
if ( nRet == 1 ) {
oShell.SendKeys( "^v" ); // paste
}
2. Do a SAVE AS from notepad, name the file spellcheck.js , and put it in directory C:temp
3. Open up windows explorer (right click on Start, then left click Explore.
4. Drag the file from C:Tempspellcheck.js to your Links bar at the top of Internet Explorer. You may need to right click somewhere on the top toolbar and check off Links. Also make sure Lock the toolbars is not selected.
5. Right click spellcheck and rename, Spell Check .
6. That’s it, you are done. To use, select your text by left clicking and dragging, then left click the new file in LINKS, which is now named Spell Check, and follow the prompts.
7. Note, Norton antivirus may have a fit, so when it does, select allow this script file.