Jump to content

Spellcheck for the Message Center


Huey
This topic is 7930 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

Posted

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?

Posted

What version of Windows?

What version of Word?

Is Windows Scripting Host enabled?

What error message are you getting?

 

I can't help much with "doesn't work" as the only description.

Posted

Wow, cool, let's see if it werks!

 

Umm, it didn't. Opened word, looked to paste the .js file itself into it, closed it, asked if I wanted to apply the changes, but didn't give me any chance to interact nor did it change the misspelling. Office XP?

Posted

It sounds like you tabbed out of the input area onto one of the buttons. The cursor has to be IN the message you're typing for this to work.

Posted

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...

Posted

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.

Posted

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 :(.

Posted

DOWN WITH ALL SPELLCHECK PROGRAMS! They are part of an evil plot to encourage all of us to become illiterate. (And I've never encountered one that didn't contain errors.)

Posted

>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.

Posted

>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 :).

Posted

>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.

  • 2 months later...
Posted

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"

Posted

>This sounds cool. I'm gonna give it a shot,

>

>I like it! It even accepted the casual "gonna."

>

>Thanks VDN!

 

I am glad you liked it. If you ever need to change the options make sure your web browser is open and go to TOOLS, then "ieSpell Options" and then the world will be your Oyster.

 

PEACE

VDN

 

:-)

Posted

>This seems to be a great little program, thanks for posting

>it here VD.

 

No problem. Every once in a while I watch "Screen Savers" on Tech TV and, from time to time, they always have cool little downloads to make cyber-life easier.

 

PEACE

VDN

:-)

  • 5 years later...
Posted

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.

Archived

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

  • Recently Browsing   0 members

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