What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [Request] underline spell checker

Pages: (2): « First [ 1 ] 2 » Last »
[Request] underline spell checker
Author: Message:
namooth
Junior Member
**


Posts: 31
Joined: Dec 2006
O.P. [Request] underline spell checker
are there any plans doing so?
i've found http://www.interactivegt.com/ but it costs money  + has too many bugs.
03-24-2007 09:44 AM
Profile PM Find Quote Report
effection
Full Member
***

Destroy The Runner

Posts: 135
Reputation: 4
– / Male / Flag
Joined: Sep 2006
RE: [Request] underline spell checker
ive thought about this but i dont know ho i would write a checker system for all the many different typos :(
03-24-2007 01:17 PM
Profile E-Mail PM Find Quote Report
markee
Veteran Member
*****

Avatar

Posts: 1621
Reputation: 50
35 / Male / Flag
Joined: Jan 2006
RE: [Request] underline spell checker
quote:
Originally posted by effection
ive thought about this but i dont know ho i would write a checker system for all the many different typos :(
You can use the one in office.  There are examples in the Windows Script Documentation 5.6.  The code extract you are after exactly is...
code:
var Word, Doc, Uncorrected, Corrected;
var wdDialogToolsSpellingAndGrammar = 828;
var wdDoNotSaveChanges = 0;
Uncorrected = "Helllo world!";
Word = new ActiveXObject("Word.Application");
Doc = Word.Documents.Add();
Word.Selection.Text = Uncorrected;
Word.Dialogs(wdDialogToolsSpellingAndGrammar).Show();
if (Word.Selection.Text.length != 1)
   Corrected = Word.Selection.Text;
else
   Corrected = Uncorrected;
Doc.Close(wdDoNotSaveChanges);
Word.Quit();

The hard part is the red squiggle underline to indicate the word is incorrectly spelt.
[Image: markee.png]
03-24-2007 01:24 PM
Profile PM Find Quote Report
effection
Full Member
***

Destroy The Runner

Posts: 135
Reputation: 4
– / Male / Flag
Joined: Sep 2006
RE: [Request] underline spell checker
yes ive seen someone use the MS Word spell checker before but what about the people without word...
03-24-2007 05:41 PM
Profile E-Mail PM Find Quote Report
scott2010_h
Full Member
***

Avatar

Posts: 187
Reputation: 10
32 / Male / Flag
Joined: Dec 2005
Status: Away
RE: [Request] underline spell checker
just use Etcetera It doesn't have the red squiggle but it does spellcheck.(you need Microsoft Word)

This post was edited on 03-24-2007 at 07:20 PM by scott2010_h.
03-24-2007 07:17 PM
Profile E-Mail PM Web Find Quote Report
effection
Full Member
***

Destroy The Runner

Posts: 135
Reputation: 4
– / Male / Flag
Joined: Sep 2006
RE: [Request] underline spell checker
i'm working on a universal spell checker right now so il have it done as soon as i can
03-24-2007 11:08 PM
Profile E-Mail PM Find Quote Report
namooth
Junior Member
**


Posts: 31
Joined: Dec 2006
O.P. RE: [Request] underline spell checker
underline spell checker??
03-25-2007 04:26 AM
Profile PM Find Quote Report
effection
Full Member
***

Destroy The Runner

Posts: 135
Reputation: 4
– / Male / Flag
Joined: Sep 2006
RE: [Request] underline spell checker
wont be underline because i dont think you can do that with a script at the moment but it will have the ability to replace words and automatically replace common typos
03-27-2007 05:29 PM
Profile E-Mail PM Find Quote Report
namooth
Junior Member
**


Posts: 31
Joined: Dec 2006
O.P. RE: [Request] underline spell checker
cool, thanks for the effort
03-27-2007 05:58 PM
Profile PM Find Quote Report
Ashylay
Junior Member
**

Intermediate Scripter

Posts: 70
Reputation: 1
– / Male / –
Joined: Mar 2007
RE: [Request] underline spell checker
Not really a spell checker but could be like a slang checker just make an array of words and say if you type anything in the array then say [ u]word[/u]
03-27-2007 07:16 PM
Profile E-Mail PM Find Quote Report
Pages: (2): « First [ 1 ] 2 » Last »
« Next Oldest Return to Top Next Newest »


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On