<SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial">
<P class=MsoNormal style="MARGIN: 0in 0in 0pt"><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial">Hiya Folks...
I was reading the latest issue of PC Magazine and in their "Internet Professional Section" they have a decent script that allows forum postings to be spell checked right from your browser if you have MS Word... Remember, you have to have Microsoft Word for this to work...
Start Notepad, or your favorite text editor and paste the following in...</SPAN>
<P class=MsoNormal style="MARGIN: 0in 0in 0pt">
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
}
Save the file as spellcheck.js
Drag the file from Windows Explorer to the links bar in Internet Explorer to create a shortcut to the file. Right click on it to rename it and/or change the icon...
Hope this may help some...
</SPAN>
Edit:
Okay, can someone explian the SPAN information and other MS Information showing up.... mayhaps this script is not as cool as I thought 
<P class=MsoNormal style="MARGIN: 0in 0in 0pt"><SPAN style="FONT-SIZE: 10pt; FONT-FAMILY: Arial">Hiya Folks...
I was reading the latest issue of PC Magazine and in their "Internet Professional Section" they have a decent script that allows forum postings to be spell checked right from your browser if you have MS Word... Remember, you have to have Microsoft Word for this to work...
Start Notepad, or your favorite text editor and paste the following in...</SPAN>
<P class=MsoNormal style="MARGIN: 0in 0in 0pt">
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
}
Save the file as spellcheck.js
Drag the file from Windows Explorer to the links bar in Internet Explorer to create a shortcut to the file. Right click on it to rename it and/or change the icon...
Hope this may help some...
Edit:
