Jump to content

Spellcheck for the Message Center


Huey
This topic is 7457 days old and is no longer open for new replies.  Replies are automatically disabled after two years of inactivity.  Please create a new topic instead of posting here.  

Recommended Posts

OK I'm going to test this out. It doesn't work :(. I have word installed. Copied and pasted the code only in a text file saved it in my docs with a .js extension. Then dragged it to my links on IE. What am I doing wrong Deej?

Link to comment
Share on other sites

Ok, let's give it another try, this is a different computer, Win2k, Office 2k.

 

Did pretty much the same thing... until I tried actually following your instructions. I had the .js itself in favorites, made a shortcut to it in My Documents and put it in Links and it works great now!

 

VERY COOL!!! Three cheers for Deej...

Link to comment
Share on other sites

Hey, it's been a lifesaver for me since Deej slipped it to me in an unmarked paper bag several years ago.

 

As you may have noticed, I have not yet put it on my new computer and I am appalled at my atrocious spelling.

 

And if you do not have the right things to make it work, you can always bookmark http://www.spellcheck.net. Its free.

 

Glad to see someone here is using Biddingfortravel.com. One of my fave websites. I thought *I* could be bitchy, but I think Sheryl has me beat. But I love her 'cause she really takes her work seriously.

 

Sorry, I got off the subject.

Link to comment
Share on other sites

Actually HooBoy you are why I use biddingfortravel and yes she makes you look like an angel :).

 

Deej, I have win xp home edition, P4 computer with microsoft word 2002 and it says office for xp.

 

I copied the code saved it as a .js in my documents. Then dragged it to my links. When I went to open it nothing was there the first time. Tried again and the java script showed ye it didn't attempt any spell check :(.

Link to comment
Share on other sites

>Deej, I have win xp home edition, P4 computer with microsoft

>word 2002 and it says office for xp.

>

>I copied the code saved it as a .js in my documents. Then

>dragged it to my links. When I went to open it nothing was

>there the first time. Tried again and the java script showed

>ye it didn't attempt any spell check :(.

 

Two things could be happening.

 

1) You weren't in a message-compose box when you tried to run the program or,

 

2) Either your computer has Windows Scripting Host disabled or some naughty program has taken over the association for .JS files. (I think Dreamweaver is one that does this.)

 

It definitely works, as other posts on this thread show, but it's a bit fragile. You can't just run the program from anywhere. You HAVE to be composing a message, and the cursor has to be in the message you're composing.

Link to comment
Share on other sites

>2) Either your computer has Windows Scripting Host disabled or

>some naughty program has taken over the association for .JS

>files. (I think Dreamweaver is one that does this.)

 

Bingo :o I had Dreaweaver on my computer. There probably are bits of it still scattered about. Most like this is why it isn't working for me :(.

 

I even deleted the original file and started over step by step and it is a no go. I guess I'll have to learn how to spell :).

Link to comment
Share on other sites

>Bingo :o I had Dreaweaver on my computer. There probably are

>bits of it still scattered about. Most like this is why it

>isn't working for me :(.

>

>I even deleted the original file and started over step by step

>and it is a no go. I guess I'll have to learn how to spell

>:).

 

Well, all is not lost. You just need to re-associate JS files with Windows Scripting Host. In XP:

 

* Open My Computer

* On the menu, Tools -> Folder Options

* File Types tab, scroll down until you find the entry for .JS files

* Change it to "Microsoft ® Windows Based Script Host"

 

Some anti-virus programs change this setting, too.

Link to comment
Share on other sites

  • 2 months later...

This seems to be a great little program, thanks for posting it here VD.

===

"You realize that life goes fast

It's hard to make the good things last"

Link to comment
Share on other sites

  • 5 years later...

A frequent request is to get spell-checking in the Message Center.

 

If you're running Microsoft Windows and have Microsoft Word installed, this will work for you.

 

* 1) Right click on your desktop and choose New->Text Document

* 2) Copy/Paste this program code:

 

--- program code starts here ... dont' copy this line ---

 

oShell = new ActiveXObject("WScript.Shell");

oWord = new ActiveXObject("Word.Application");

 

oShell.SendKeys("^a");

oShell.SendKeys("^c");

 

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?\n\nClick OK to replace all selected text.", 0, "Spell Check Complete", 33);

 

if (nRet == 1) {

oShell.SendKeys("^v")

}

 

--- program code ends here -- don't copy this line ---

 

* 3) Save it with the extension .JS -- I saved mine as SpellChk.js in the "My Documents" folder.

* 4) Add it to your Internet Explorer "Links" toolbar.

 

From then on, click on your spellchk link in the Links toolbar when composing messages and you've got spell-checking for messages you post.

 

The cool thing about this (if you're a Windows user and have Word installed) is that it works in just about any message board.

 

Enjoy.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...