freeware

Threads Posts Archives


<< Previous Thread << Previous Post Topic 14573 of 16625
Posts 2 of 21
Next Post >> Next Thread >>

Re: SpellChecker for Text Editing


de PaulFXH 05/31/2006 02:20




Michael escreveu:

> There's a free tiny script, available from this link, that'll send any
> text that you can copy to the clipboard to the MS Word spellchecker
> (which, of course, is not freeware):
>
> http://www.pcnineoneone.com/tweaks/scripts8.html
>
> I use this script with Notepad2 as an "Amish computing" strategy --
> writing without distractions.

Hi Michael
I've been using the spellchecker you brought to the thread and I really
do like it.
So much so that I've written a small script to make it easier to use.
I use a WinKey Hotkey combo to launch the script once I have finished
writing a file to a text editor. The script then highlights the text,
copies it to the clipboard and launches the MSWord spellchecker without
the user having to touch the keyboard or mouse.
The script as written only applies to NotePad right now but this can
easily be changed by changing the title string of the text editor app
noted in the AppActivate command line (fifth line as presented here).
Here's the script (written in vbscript):

Dim objShell
Set objShell = WScript.CreateObject("Wscript.shell")
Wscript.Sleep 1000
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.AppActivate "notepad"
WScript.Sleep 100
wshshell.SendKeys "^{home}"
wshshell.SendKeys "^+{end}"
wshshell.SendKeys "^c"
objShell.Run "sp"

Note that the script assumes that you have not altered the suggested
"sp" name for the Run command. If you have, change the last line of the
script.

Paul



>
> Michael



SpellChecker for Text Editing PaulFXH
|  Re: SpellChecker for Text Editing PaulFXH
  Re: SpellChecker for Text Editing PaulFXH
  Re: SpellChecker for Text Editing PaulFXH
    Re: SpellChecker for Text Editing gswiebeREMOVE_THIS
  Re: SpellChecker for Text Editing PaulFXH
    Re: SpellChecker for Text Editing Derald
    Re: SpellChecker for Text Editing Klaatu
  Re: SpellChecker for Text Editing PaulFXH
  Re: SpellChecker for Text Editing REM
  Re: SpellChecker for Text Editing Michael
  Re: SpellChecker for Text Editing PaulFXH
    Re: SpellChecker for Text Editing Mike Dee
  Re: SpellChecker for Text Editing Mike Dee
    Re: SpellChecker for Text Editing Bill Day
      Re: SpellChecker for Text Editing Susan Bugher
        Re: SpellChecker for Text Editing bMorphus
      Re: SpellChecker for Text Editing Rednax
        Re: SpellChecker for Text Editing Mike Dee
    Re: SpellChecker for Text Editing Heinrich Himmelschrei
      Re: SpellChecker for Text Editing Mike Dee
 
freeware