1. Open Outlook Express
2. Press insert F2 to bring up the list of managers, and press S for script manager, and then press enter.
3. When the script manager opens,press control end, to move to the bottom of the file.
4. Use the say line command, to make sure you aare on a blank line, and then press enter twice.
5. Copy the script in this message to the clipboard, and then paste it into the script manager.
6. Now, up arrow to, the line that says script reply to sender.
7. Press control D, to open the documentation for the script.
8. the first field should contain the script name, ReplyToSender If it doesn't appear, then type it in, making sure to capitalize the first letter of each word, and run the words together with no spaces.
9. Tab, once, and make sure the, can be attached to key, checkbox is checked.
10. Tab once, and you will be in the synopsis field, type one in if you wish, and then tab to the description field, and do the same.
11. Now tab to the assign to hotkey field and press the keystroke you desire. Note: If the keystroke you choose is already in use, you will recieve a warning message. IMPORTANT: Once you press the keystroke, do not press any more keys, until you tab to the okay button. Doing so will cause the last keystroke pressed to be assigned.
Once on the okay button, press enter, and then press control S, to compile the script.
You should get a message saying compile complete.
12. Alt F4 to close the scrip manager, and then close Outlook Express. When you re-open Outlook Express, the script should be ready. Note: You must be in an open message for the script to work.
Important: As with any software, and especially Jaws, there is no guarantee this script will work for everyone.
Script ReplyToSender ()
var
handle hwnd
SpeechOff ()
let hwnd = FindDescendantWindow (GetRealWindow (GetFocus ()), From_Field2)
if !(IsWindowVisible (hwnd)) then
SpeechOn()
SayString ("Must be in an open message")
return 0
endif
SetFocus (hwnd)
{control+a}
{control+c}
{control+r}
{shift+tab}
{shift+tab}
{shift+tab}
{Shift + Tab}
{control+a}
{control+v}
Pause ()
Delay (1)
{tab}
{tab}
{tab}
{tab}
{tab}
SpeechOn ()
EndScript