Re: [JAWS-Users] First Letter Navigation

2012-07-25 Thread Janie Degenshein
I have the same configuration as you exactly and ever since I have used WLM 
with jaws 11 or 12 or the latest updated 13 I have never been able to use 
first letter navigation within the list of folders so just arrow instead.

anyone else with better results for us?



Keep Smiling,
Janie Degenshein
Happiness isn't having what you want, but wanting what you already have
Access Tech Consultant
Facilitator of ECHO
(Eyes Closed Hearts Open)
President, National Federation of the Blind of New Jersey Senior Division
Co-host of OTBS On The Bright Side
www.thruoureyes.org/brightside.html
jdege...@comcast.net
-Original Message- 
From: Scorpio

Sent: Tuesday, July 24, 2012 11:52 PM
To: jaws-users-list@jaws-users.com
Subject: [JAWS-Users] First Letter Navigation

Hi All,

Is anyone having this problem of not being able to use first letter 
navigation in the folder hierarchy in Windows Live Mail?  I am currently 
using Jaws 13, latest build, Windows 7, 32 bit, with all updates installed, 
and yet, I am not able to use first letter navigation within the folder list 
of Windows Live Mail.


I am able to use it in Windows Explorer, and other applications, but not in 
WLM.


Does anyone have a fix for this problem, or is anyone even remotely going 
through this same problem?


Any help would be appreciated.

Scorpio
For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/ 



For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


Re: [JAWS-Users] Changing the Jaws Start up message

2012-07-25 Thread David
Hello there;

Here's the script 
The following text is what you need.


Void Function StartupGreeting () ; written on 8/9/2005 by: Richard Justice
; Modified on 11/25/2009, by David Ferrin

Var
String CurDate,
String CurTime,
String Date,
String Time,
String Greeting,
String UserName,
String UserGreeting

Let Greeting = (good morning,good afternoon,good evening)
Let UserName = (YourName,)
;Replace the quoted text in the line above to match your name, making sure
to leave the comma.
Let Date = SysGetDate ()
Let CurDate = (the date is) + Date
Let Time = SysGetTime ()
Let CurTime = (the time is) + Time

If StringContains (Time, A) then
Let UserGreeting = StringSegment (Greeting, ,, 1) + UserName + CurDate
+CurTime
SayString ( UserGreeting )
Else If StringContains (Time, 12:) then
Let UserGreeting = StringSegment (Greeting, ,, 2) +UserName + CurDate
+CurTime
SayString ( UserGreeting )
Else If StringContains (Time, 1:) then
Let UserGreeting = StringSegment (Greeting, ,, 2) +UserName + CurDate
+CurTime
SayString ( UserGreeting )
Else If StringContains (Time, 2:) then
Let UserGreeting = StringSegment (Greeting, ,, 2) +UserName + CurDate
+CurTime
SayString ( UserGreeting )
Else If StringContains (Time, 3:) then
Let UserGreeting = StringSegment (Greeting, ,, 2) +UserName + CurDate
+CurTime
SayString ( UserGreeting )
Else If StringContains (Time, 4:) then
Let UserGreeting = StringSegment (Greeting, ,, 2) +UserName + CurDate
+CurTime
SayString ( UserGreeting )
Else If StringContains (Time, 5:) then
Let UserGreeting = StringSegment (Greeting, ,, 2) +UserName + CurDate
+CurTime
SayString ( UserGreeting )
Else Let UserGreeting = StringSegment (Greeting, ,, 3) +UserName + CurDate
+CurTime
SayString ( UserGreeting )
EndIf
EndIf
EndIf
EndIf
EndIf
EndIf
EndIf
SayString (This is Windows7 JAWS Version 13.0)
;Change the version number in the above line to match your version of Jaws.
EndFunction


-Original Message-
From: jaws-users-list-boun...@jaws-users.com
[mailto:jaws-users-list-boun...@jaws-users.com] On Behalf Of Kerryann Ifill
Sent: Tuesday, July 24, 2012 10:36 PM
To: jaws-users-list@jaws-users.com
Subject: Re: [JAWS-Users] Changing the Jaws Start up message

I don't mean to sound completely stupid, but when I looked at the bottom of
your message I saw 2 sets of information that looked like it should be
pasted broken with the state let greeting + good morning, etc., do I paste
in everything including the info about letting greeting + or was that a
note.
Please pardon my stupidity on this one.

Regards
Kerry

-Original Message-
From: jaws-users-list-boun...@jaws-users.com
[mailto:jaws-users-list-boun...@jaws-users.com] On Behalf Of David
Sent: Tuesday, July 24, 2012 11:14 AM
To: jaws-users-list@jaws-users.com
Subject: Re: [JAWS-Users] Changing the Jaws Start up message

Hello there;

I will paste the script at the bottom;
Here's how I ad the script.

1, I open notepad,

2, I paste in the text,

3, I make the necessary changes,
To the following lines;

Let UserName = (YourName,)
;Replace the quoted text in the line above to match your name, making sure
to leave the comma.

SayString (This is Windows7 JAWS Version 13.0) ;Change the version number
in the above line to match your version of Jaws.

Once I have made these changes,

I press insert+0=script manager;
I then press, ctrl+shift+d=default script manager.

I next press, ctrl+end-key, to go to the bottom, and I then, press, the
end-key to go to the end of the line, and press the enter key a couple of
times.
Now I paste in the script.
The next step,
Press, the f2key, now I start down arrowing until I hear; if
(DefaultFirstTime == 0) then here I press the end-key to go to the end of
the line, now I press the enter key.
Here I type in the following;
StartupGreeting ()
Note the lef and right paren
Now I press,
Ctrl+s=compile,
Then alt+f4.
Now unload and reload jaws.
You should hear,
The added script information.

Void Function StartupGreeting () ; written on 8/9/2005 by: Richard Justice ;
Modified on 11/25/2009, by David Ferrin

Var
String CurDate,
String CurTime,
String Date,
String Time,
String Greeting,
String UserName,
String UserGreeting

Let Greeting = (good morning,good afternoon,good evening) Let UserName =
(YourName,) ;Replace the quoted text in the line above to match your name,
making sure to leave the comma.
Let Date = SysGetDate ()
Let CurDate = (the date is) + Date
Let Time = SysGetTime ()
Let CurTime = (the time is) + Time

If StringContains (Time, A) then
Let UserGreeting = StringSegment (Greeting, ,, 1) + UserName + CurDate
+CurTime
SayString ( UserGreeting )
Else If StringContains (Time, 12:) then Let UserGreeting = StringSegment
(Greeting, ,, 2) +UserName + CurDate
+CurTime
SayString ( UserGreeting )
Else If StringContains (Time, 1:) then Let UserGreeting = StringSegment
(Greeting, ,, 2) +UserName + CurDate
+CurTime
SayString ( UserGreeting )
Else If StringContains (Time, 2:) then Let UserGreeting = StringSegment
(Greeting, ,, 2) 

Re: [JAWS-Users] Changing the Jaws Start up message

2012-07-25 Thread shyam sharma
Very interesting to learn it.
Many many thanks friends.



On 7/25/12, Kerryann Ifill k...@caribsurf.com wrote:
 I don't mean to sound completely stupid, but when I looked at the bottom of
 your message I saw 2 sets of information that looked like it should be
 pasted broken with the state let greeting + good morning, etc., do I paste
 in everything including the info about letting greeting + or was that a
 note.
 Please pardon my stupidity on this one.

 Regards
 Kerry

 -Original Message-
 From: jaws-users-list-boun...@jaws-users.com
 [mailto:jaws-users-list-boun...@jaws-users.com] On Behalf Of David
 Sent: Tuesday, July 24, 2012 11:14 AM
 To: jaws-users-list@jaws-users.com
 Subject: Re: [JAWS-Users] Changing the Jaws Start up message

 Hello there;

 I will paste the script at the bottom;
 Here's how I ad the script.

 1, I open notepad,

 2, I paste in the text,

 3, I make the necessary changes,
 To the following lines;

 Let UserName = (YourName,)
 ;Replace the quoted text in the line above to match your name, making sure
 to leave the comma.

 SayString (This is Windows7 JAWS Version 13.0)
 ;Change the version number in the above line to match your version of Jaws.

 Once I have made these changes,

 I press insert+0=script manager;
 I then press, ctrl+shift+d=default script manager.

 I next press, ctrl+end-key, to go to the bottom, and I then, press, the
 end-key to go to the end of the line, and press the enter key a couple of
 times.
 Now I paste in the script.
 The next step,
 Press, the f2key, now I start down arrowing until I hear;
 if (DefaultFirstTime == 0) then
 here I press the end-key to go to the end of the line,
 now I press the enter key.
 Here I type in the following;
 StartupGreeting ()
 Note the lef and right paren
 Now I press,
 Ctrl+s=compile,
 Then alt+f4.
 Now unload and reload jaws.
 You should hear,
 The added script information.

 Void Function StartupGreeting () ; written on 8/9/2005 by: Richard Justice
 ; Modified on 11/25/2009, by David Ferrin

 Var
 String CurDate,
 String CurTime,
 String Date,
 String Time,
 String Greeting,
 String UserName,
 String UserGreeting

 Let Greeting = (good morning,good afternoon,good evening)
 Let UserName = (YourName,)
 ;Replace the quoted text in the line above to match your name, making sure
 to leave the comma.
 Let Date = SysGetDate ()
 Let CurDate = (the date is) + Date
 Let Time = SysGetTime ()
 Let CurTime = (the time is) + Time

 If StringContains (Time, A) then
 Let UserGreeting = StringSegment (Greeting, ,, 1) + UserName + CurDate
 +CurTime
 SayString ( UserGreeting )
 Else If StringContains (Time, 12:) then
 Let UserGreeting = StringSegment (Greeting, ,, 2) +UserName + CurDate
 +CurTime
 SayString ( UserGreeting )
 Else If StringContains (Time, 1:) then
 Let UserGreeting = StringSegment (Greeting, ,, 2) +UserName + CurDate
 +CurTime
 SayString ( UserGreeting )
 Else If StringContains (Time, 2:) then
 Let UserGreeting = StringSegment (Greeting, ,, 2) +UserName + CurDate
 +CurTime
 SayString ( UserGreeting )
 Else If StringContains (Time, 3:) then
 Let UserGreeting = StringSegment (Greeting, ,, 2) +UserName + CurDate
 +CurTime
 SayString ( UserGreeting )
 Else If StringContains (Time, 4:) then
 Let UserGreeting = StringSegment (Greeting, ,, 2) +UserName + CurDate
 +CurTime
 SayString ( UserGreeting )
 Else If StringContains (Time, 5:) then
 Let UserGreeting = StringSegment (Greeting, ,, 2) +UserName + CurDate
 +CurTime
 SayString ( UserGreeting )
 Else Let UserGreeting = StringSegment (Greeting, ,, 3) +UserName +
 CurDate
 +CurTime
 SayString ( UserGreeting )
 EndIf
 EndIf
 EndIf
 EndIf
 EndIf
 EndIf
 EndIf
 SayString (This is Windows7 JAWS Version 13.0)
 ;Change the version number in the above line to match your version of Jaws.
 EndFunction

 -Original Message-
 From: jaws-users-list-boun...@jaws-users.com
 [mailto:jaws-users-list-boun...@jaws-users.com] On Behalf Of tim
 Sent: Tuesday, July 24, 2012 9:12 AM
 To: jaws-users-list@jaws-users.com
 Subject: Re: [JAWS-Users] Changing the Jaws Start up message

 Its going to say that little bit anyway, because its hard coded into the
 executable. But, you can add on to that with a script.

 At 10:16 PM 7/23/2012, you wrote:
Hi list,

Is it still possible to reconfigure the jaws start up message to make
it say something other than jaws for windows for ready?
If there is, can you tell me how to.

Regards
Kerry


For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


 For answers to frequently asked questions about this list visit:
 http://www.jaws-users.com/help/


 For answers to frequently asked questions about this list visit:
 http://www.jaws-users.com/help/


 For answers to frequently asked questions about this list visit:
 http://www.jaws-users.com/help/


For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


Re: [JAWS-Users] First Letter Navigation

2012-07-25 Thread David
hello there;

well, lets just say, your not alone.
Letter navigation is not doable in windows live mail.

So whether you press ctrl+y=go to folder,
You'll still need to arrow to the folder you wish to access.
If you want letter navigation then you will need to change to outlook for
example.

-Original Message-
From: jaws-users-list-boun...@jaws-users.com
[mailto:jaws-users-list-boun...@jaws-users.com] On Behalf Of Scorpio
Sent: Tuesday, July 24, 2012 11:52 PM
To: jaws-users-list@jaws-users.com
Subject: [JAWS-Users] First Letter Navigation

Hi All,

Is anyone having this problem of not being able to use first letter
navigation in the folder hierarchy in Windows Live Mail?  I am currently
using Jaws 13, latest build, Windows 7, 32 bit, with all updates installed,
and yet, I am not able to use first letter navigation within the folder list
of Windows Live Mail.

I am able to use it in Windows Explorer, and other applications, but not in
WLM.

Does anyone have a fix for this problem, or is anyone even remotely going
through this same problem?

Any help would be appreciated.

Scorpio
For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


Re: [JAWS-Users] Insert plus T no longer announces title

2012-07-25 Thread David
Hello there;

Just by chance,
Did you change you're user verbosity in the jaws quick settings,/general
options?


-Original Message-
From: jaws-users-list-boun...@jaws-users.com
[mailto:jaws-users-list-boun...@jaws-users.com] On Behalf Of Fred Adams
Sent: Tuesday, July 24, 2012 4:42 PM
To: jaws-users
Subject: [JAWS-Users] Insert plus T no longer announces title

I am using W7, outlook 2010 and latest jaws and I somehow must have turned
something off.  When I am in my in box and press insert plus T, jaws no
longer announces the title or anything.  I have gone over my settings many
times but I can't find anything that turns this back on.  I would appreciate
any suggestions on this as I use the title many times to find things.
Thanks much,

FRED ADAMS W4HC





For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


Re: [JAWS-Users] I can't get to one of my groups in outlook 2007.

2012-07-25 Thread David
Hello there;

So if you bring up your outlook addressbook,
Ctrl+shift+b,
And if you do either a search or just arrow through the contacts do you see
your group name?

I know in outlook 2010,
If you, bring up the contacts with ctrl+3,
Now use the keystroke,
Alt+h/m,
This gets you to add a member.
Maybe give this a try,
Also, if you can find your group in outlook 2007 contacts,
Maybe press the applications key and see if there's an add contact.



-Original Message-
From: jaws-users-list-boun...@jaws-users.com
[mailto:jaws-users-list-boun...@jaws-users.com] On Behalf Of jim rawls
Sent: Tuesday, July 24, 2012 9:28 PM
To: jaws-users-list@jaws-users.com
Subject: [JAWS-Users] I can't get to one of my groups in outlook 2007.

Hi All,

I am running windows 7 home premium, jaws 13, latest update, on a 64 bit
machine. 

I have a  group called forwards in my outlook groups. When I hit control F,
the address comes up, and, I can send emails to that group. I want to add
someone to the group, but it is not listed in my contacts. How do I get to
the group to add someone to it? Thanks for your help. Jim

 

 

 

 

For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


Re: [JAWS-Users] Insert plus T no longer announces title

2012-07-25 Thread Fred Adams
No, I don't think so but I will double check everything .  I appreciate
all of the suggestions from the list.

FRED ADAMS W4HC


-Original Message-
From: jaws-users-list-boun...@jaws-users.com
[mailto:jaws-users-list-boun...@jaws-users.com] On Behalf Of David
Sent: Wednesday, July 25, 2012 7:48 AM
To: jaws-users-list@jaws-users.com
Subject: Re: [JAWS-Users] Insert plus T no longer announces title

Hello there;

Just by chance,
Did you change you're user verbosity in the jaws quick settings,/general
options?


-Original Message-
From: jaws-users-list-boun...@jaws-users.com
[mailto:jaws-users-list-boun...@jaws-users.com] On Behalf Of Fred Adams
Sent: Tuesday, July 24, 2012 4:42 PM
To: jaws-users
Subject: [JAWS-Users] Insert plus T no longer announces title

I am using W7, outlook 2010 and latest jaws and I somehow must have
turned something off.  When I am in my in box and press insert plus T,
jaws no longer announces the title or anything.  I have gone over my
settings many times but I can't find anything that turns this back on.  I
would appreciate any suggestions on this as I use the title many times to
find things.
Thanks much,

FRED ADAMS W4HC





For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/



For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


Re: [JAWS-Users] New googlegroups interface and JAWS

2012-07-25 Thread Rose Combs
I only have IE 9 on this computer.  



Rose Combs
roseco...@q.com


-Original Message-
From: jaws-users-list-boun...@jaws-users.com
[mailto:jaws-users-list-boun...@jaws-users.com] On Behalf Of Flor Lynch
Sent: Tuesday, July 24, 2012 7:53 AM
To: jaws-users-list@jaws-users.com
Subject: Re: [JAWS-Users] New googlegroups interface and JAWS

I tried it with firefox (and WebVisum), and it behaved better; even 
though gmail told me that they no longer support my version of Firefox. 
I decided to ignore that and then used the basic HTML view.

- Original Message - 
From: Rose Combs roseco...@q.com
To: jaws-users-list@jaws-users.com
Sent: Tuesday, July 24, 2012 1:34 PM
Subject: Re: [JAWS-Users] New googlegroups interface and JAWS


I miss Accessible Google a lot, used it especially in the work setting 
all
 the time, easier to navigate, no adds, not a ton of stuff to get 
 through to
 find what was wanted.  I hate the new design.  Way too cluttered for 
 my
 taste.


 Rose Combs
 roseco...@q.com


 -Original Message-
From: jaws-users-list-boun...@jaws-users.com
 [mailto:jaws-users-list-boun...@jaws-users.com] On Behalf Of Flor 
 Lynch
 Sent: Monday, July 23, 2012 3:05 PM
 To: jaws-users-list@jaws-users.com
 Subject: [JAWS-Users] New googlegroups interface and JAWS

 Hi,

 How are people getting on with JAWS and the new-look google groups
 interface? JAWS has trouble interpreting between links, buttons and
 menus. Often there the virtual cursor stays off, when it should be on.
 NVDA is doing a  better job than JAWS with it at the moment. Can 
 anyone
 relate, or relate their experiences if similar or different?


 For answers to frequently asked questions about this list visit:
 http://www.jaws-users.com/help/


 For answers to frequently asked questions about this list visit:
 http://www.jaws-users.com/help/
 


For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


Re: [JAWS-Users] New googlegroups interface and JAWS

2012-07-25 Thread Flor Lynch
Presumably, the site would work better with Chrome. Window-eyes and 
internet Explorer also has problems with the new interface.


- Original Message - 
From: Rose Combs roseco...@q.com

To: jaws-users-list@jaws-users.com
Sent: Wednesday, July 25, 2012 2:13 PM
Subject: Re: [JAWS-Users] New googlegroups interface and JAWS



I only have IE 9 on this computer.



Rose Combs
roseco...@q.com


-Original Message-

From: jaws-users-list-boun...@jaws-users.com
[mailto:jaws-users-list-boun...@jaws-users.com] On Behalf Of Flor 
Lynch

Sent: Tuesday, July 24, 2012 7:53 AM
To: jaws-users-list@jaws-users.com
Subject: Re: [JAWS-Users] New googlegroups interface and JAWS

I tried it with firefox (and WebVisum), and it behaved better; even
though gmail told me that they no longer support my version of 
Firefox.

I decided to ignore that and then used the basic HTML view.

- Original Message - 

From: Rose Combs roseco...@q.com

To: jaws-users-list@jaws-users.com
Sent: Tuesday, July 24, 2012 1:34 PM
Subject: Re: [JAWS-Users] New googlegroups interface and JAWS



I miss Accessible Google a lot, used it especially in the work setting
all
the time, easier to navigate, no adds, not a ton of stuff to get
through to
find what was wanted.  I hate the new design.  Way too cluttered for
my
taste.


Rose Combs
roseco...@q.com


-Original Message-

From: jaws-users-list-boun...@jaws-users.com

[mailto:jaws-users-list-boun...@jaws-users.com] On Behalf Of Flor
Lynch
Sent: Monday, July 23, 2012 3:05 PM
To: jaws-users-list@jaws-users.com
Subject: [JAWS-Users] New googlegroups interface and JAWS

Hi,

How are people getting on with JAWS and the new-look google groups
interface? JAWS has trouble interpreting between links, buttons and
menus. Often there the virtual cursor stays off, when it should be 
on.

NVDA is doing a  better job than JAWS with it at the moment. Can
anyone
relate, or relate their experiences if similar or different?


For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/




For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/




For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


Re: [JAWS-Users] I can't get to one of my groups in outlook 2007.

2012-07-25 Thread jim rawls
David, when I hit Control plus shift plus D, I get new call contact. And it 
talks
about calling whoever, and such. That series of key strokes does not take me  
to my
address book. Jim

-Original Message-
From: jaws-users-list-boun...@jaws-users.com
[mailto:jaws-users-list-boun...@jaws-users.com] On Behalf Of David
Sent: Wednesday, July 25, 2012 5:31 AM
To: jaws-users-list@jaws-users.com
Subject: Re: [JAWS-Users] I can't get to one of my groups in outlook 2007.

Hello there;

So if you bring up your outlook addressbook,
Ctrl+shift+b,
And if you do either a search or just arrow through the contacts do you see
your group name?

I know in outlook 2010,
If you, bring up the contacts with ctrl+3,
Now use the keystroke,
Alt+h/m,
This gets you to add a member.
Maybe give this a try,
Also, if you can find your group in outlook 2007 contacts,
Maybe press the applications key and see if there's an add contact.



-Original Message-
From: jaws-users-list-boun...@jaws-users.com
[mailto:jaws-users-list-boun...@jaws-users.com] On Behalf Of jim rawls
Sent: Tuesday, July 24, 2012 9:28 PM
To: jaws-users-list@jaws-users.com
Subject: [JAWS-Users] I can't get to one of my groups in outlook 2007.

Hi All,

I am running windows 7 home premium, jaws 13, latest update, on a 64 bit
machine. 

I have a  group called forwards in my outlook groups. When I hit control F,
the address comes up, and, I can send emails to that group. I want to add
someone to the group, but it is not listed in my contacts. How do I get to
the group to add someone to it? Thanks for your help. Jim

 

 

 

 

For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


Re: [JAWS-Users] First Letter Navigation

2012-07-25 Thread Baracco, Andrew W
There isn't. This is not a screen reader problem, as I use WLM with
Window Eyes. It is a limitation of WLM itself.

Andy


-Original Message-
From: jaws-users-list-boun...@jaws-users.com
[mailto:jaws-users-list-boun...@jaws-users.com] On Behalf Of Scorpio
Sent: Tuesday, July 24, 2012 8:52 PM
To: jaws-users-list@jaws-users.com
Subject: [JAWS-Users] First Letter Navigation

Hi All,

Is anyone having this problem of not being able to use first letter
navigation in the folder hierarchy in Windows Live Mail?  I am currently
using Jaws 13, latest build, Windows 7, 32 bit, with all updates
installed, and yet, I am not able to use first letter navigation within
the folder list of Windows Live Mail.

I am able to use it in Windows Explorer, and other applications, but not
in WLM.

Does anyone have a fix for this problem, or is anyone even remotely
going through this same problem?

Any help would be appreciated.

Scorpio
For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/

For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


Re: [JAWS-Users] I can't get to one of my groups in outlook 2007.

2012-07-25 Thread Arthur Barney

Hi Jim,
the key stroke to get to the address book, is ctrl + shift + B
- Original Message - 
From: jim rawls jazzpi...@ca.rr.com

To: jaws-users-list@jaws-users.com
Sent: Wednesday, July 25, 2012 11:04 AM
Subject: Re: [JAWS-Users] I can't get to one of my groups in outlook 2007.


David, when I hit Control plus shift plus D, I get new call contact. And 
it talks
about calling whoever, and such. That series of key strokes does not take 
me  to my

address book. Jim

-Original Message-
From: jaws-users-list-boun...@jaws-users.com
[mailto:jaws-users-list-boun...@jaws-users.com] On Behalf Of David
Sent: Wednesday, July 25, 2012 5:31 AM
To: jaws-users-list@jaws-users.com
Subject: Re: [JAWS-Users] I can't get to one of my groups in outlook 2007.

Hello there;

So if you bring up your outlook addressbook,
Ctrl+shift+b,
And if you do either a search or just arrow through the contacts do you 
see

your group name?

I know in outlook 2010,
If you, bring up the contacts with ctrl+3,
Now use the keystroke,
Alt+h/m,
This gets you to add a member.
Maybe give this a try,
Also, if you can find your group in outlook 2007 contacts,
Maybe press the applications key and see if there's an add contact.



-Original Message-
From: jaws-users-list-boun...@jaws-users.com
[mailto:jaws-users-list-boun...@jaws-users.com] On Behalf Of jim rawls
Sent: Tuesday, July 24, 2012 9:28 PM
To: jaws-users-list@jaws-users.com
Subject: [JAWS-Users] I can't get to one of my groups in outlook 2007.

Hi All,

I am running windows 7 home premium, jaws 13, latest update, on a 64 bit
machine.

I have a  group called forwards in my outlook groups. When I hit control 
F,

the address comes up, and, I can send emails to that group. I want to add
someone to the group, but it is not listed in my contacts. How do I get to
the group to add someone to it? Thanks for your help. Jim









For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/

__ Information from ESET NOD32 Antivirus, version of virus 
signature database 7328 (20120725) __


The message was checked by ESET NOD32 Antivirus.

http://www.eset.com






For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


[JAWS-Users] re-First Letter Navigation

2012-07-25 Thread jim
Hi Janie and others.

this is a WLM problem, we can not use first letter navigation in WLM.

Just like every now and again when using f7 to spell check, it will lock up the 
program.
Over all I am very happy with WLM.
Have a wonderful day!
Jim: 

I've LearnedThat life is like a roll of toilet Paper. 
The Closer it gets to the end, the faster it goes.

God bless:

GO BUCKS!!!
For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


[JAWS-Users] new jaws update.

2012-07-25 Thread Howard
hi list:
new jaws update available.
it is j13.0.1005.
don't have the direct download link but you can get it from automatic update or 
jaws headquarters page.


howard wolcott
For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


Re: [JAWS-Users] I can't get to one of my groups in outlook 2007.

2012-07-25 Thread David
Hello Jim;
If I said ctrl+shift+d, I certainly meant;
Ctrl+shift+b=bravo.
Or, ctrl+3
Either way gets you to contacts.

-Original Message-
From: jaws-users-list-boun...@jaws-users.com
[mailto:jaws-users-list-boun...@jaws-users.com] On Behalf Of jim rawls
Sent: Wednesday, July 25, 2012 11:05 AM
To: jaws-users-list@jaws-users.com
Subject: Re: [JAWS-Users] I can't get to one of my groups in outlook 2007.

David, when I hit Control plus shift plus D, I get new call contact. And it
talks about calling whoever, and such. That series of key strokes does not
take me  to my address book. Jim

-Original Message-
From: jaws-users-list-boun...@jaws-users.com
[mailto:jaws-users-list-boun...@jaws-users.com] On Behalf Of David
Sent: Wednesday, July 25, 2012 5:31 AM
To: jaws-users-list@jaws-users.com
Subject: Re: [JAWS-Users] I can't get to one of my groups in outlook 2007.

Hello there;

So if you bring up your outlook addressbook,
Ctrl+shift+b,
And if you do either a search or just arrow through the contacts do you see
your group name?

I know in outlook 2010,
If you, bring up the contacts with ctrl+3, Now use the keystroke,
Alt+h/m,
This gets you to add a member.
Maybe give this a try,
Also, if you can find your group in outlook 2007 contacts, Maybe press the
applications key and see if there's an add contact.



-Original Message-
From: jaws-users-list-boun...@jaws-users.com
[mailto:jaws-users-list-boun...@jaws-users.com] On Behalf Of jim rawls
Sent: Tuesday, July 24, 2012 9:28 PM
To: jaws-users-list@jaws-users.com
Subject: [JAWS-Users] I can't get to one of my groups in outlook 2007.

Hi All,

I am running windows 7 home premium, jaws 13, latest update, on a 64 bit
machine. 

I have a  group called forwards in my outlook groups. When I hit control F,
the address comes up, and, I can send emails to that group. I want to add
someone to the group, but it is not listed in my contacts. How do I get to
the group to add someone to it? Thanks for your help. Jim

 

 

 

 

For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


Re: [JAWS-Users] Insert plus T no longer announces title

2012-07-25 Thread David
Hello Fred;
I just discovered something interesting regarding the insert+t=title bar.

Using outlook2010,
If I'm inside the folder listview,
Jaws won't announce anything when I press, insert+t,
However,
If I'm in the folder view,
Insert+t actually does work.
I just found this out, I very rarely in fact never use the insert+t within
outlook.

Take care.



-Original Message-
From: jaws-users-list-boun...@jaws-users.com
[mailto:jaws-users-list-boun...@jaws-users.com] On Behalf Of Fred Adams
Sent: Tuesday, July 24, 2012 4:42 PM
To: jaws-users
Subject: [JAWS-Users] Insert plus T no longer announces title

I am using W7, outlook 2010 and latest jaws and I somehow must have turned
something off.  When I am in my in box and press insert plus T, jaws no
longer announces the title or anything.  I have gone over my settings many
times but I can't find anything that turns this back on.  I would appreciate
any suggestions on this as I use the title many times to find things.
Thanks much,

FRED ADAMS W4HC





For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


Re: [JAWS-Users] Insert plus T no longer announces title

2012-07-25 Thread Kimsan
David,
I noticed the same thing here just now using outlook 2010.
No solution, just saying I noticed the same thing.
Laters...

-Original Message-
From: jaws-users-list-boun...@jaws-users.com
[mailto:jaws-users-list-boun...@jaws-users.com] On Behalf Of David
Sent: Wednesday, July 25, 2012 12:24 PM
To: jaws-users-list@jaws-users.com
Subject: Re: [JAWS-Users] Insert plus T no longer announces title

Hello Fred;
I just discovered something interesting regarding the insert+t=title bar.

Using outlook2010,
If I'm inside the folder listview,
Jaws won't announce anything when I press, insert+t, However, If I'm in the
folder view,
Insert+t actually does work.
I just found this out, I very rarely in fact never use the insert+t within
outlook.

Take care.



-Original Message-
From: jaws-users-list-boun...@jaws-users.com
[mailto:jaws-users-list-boun...@jaws-users.com] On Behalf Of Fred Adams
Sent: Tuesday, July 24, 2012 4:42 PM
To: jaws-users
Subject: [JAWS-Users] Insert plus T no longer announces title

I am using W7, outlook 2010 and latest jaws and I somehow must have turned
something off.  When I am in my in box and press insert plus T, jaws no
longer announces the title or anything.  I have gone over my settings many
times but I can't find anything that turns this back on.  I would appreciate
any suggestions on this as I use the title many times to find things.
Thanks much,

FRED ADAMS W4HC





For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


Re: [JAWS-Users] Insert plus T no longer announces title

2012-07-25 Thread Fred Adams
David, you are right.Maybe I have been trying the title while in the list
view.  I guess it was set up that way.

FRED ADAMS W4HC


-Original Message-
From: jaws-users-list-boun...@jaws-users.com
[mailto:jaws-users-list-boun...@jaws-users.com] On Behalf Of David
Sent: Wednesday, July 25, 2012 3:24 PM
To: jaws-users-list@jaws-users.com
Subject: Re: [JAWS-Users] Insert plus T no longer announces title

Hello Fred;
I just discovered something interesting regarding the insert+t=title bar.

Using outlook2010,
If I'm inside the folder listview,
Jaws won't announce anything when I press, insert+t, However, If I'm in
the folder view,
Insert+t actually does work.
I just found this out, I very rarely in fact never use the insert+t
within outlook.

Take care.



-Original Message-
From: jaws-users-list-boun...@jaws-users.com
[mailto:jaws-users-list-boun...@jaws-users.com] On Behalf Of Fred Adams
Sent: Tuesday, July 24, 2012 4:42 PM
To: jaws-users
Subject: [JAWS-Users] Insert plus T no longer announces title

I am using W7, outlook 2010 and latest jaws and I somehow must have
turned something off.  When I am in my in box and press insert plus T,
jaws no longer announces the title or anything.  I have gone over my
settings many times but I can't find anything that turns this back on.  I
would appreciate any suggestions on this as I use the title many times to
find things.
Thanks much,

FRED ADAMS W4HC





For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/



For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


Re: [JAWS-Users] First Letter Navigation

2012-07-25 Thread Donnie Parrett
It does work very well in Outlook 2010.

-Original Message-
From: jaws-users-list-boun...@jaws-users.com
[mailto:jaws-users-list-boun...@jaws-users.com] On Behalf Of David
Sent: Wednesday, July 25, 2012 7:31 AM
To: jaws-users-list@jaws-users.com
Subject: Re: [JAWS-Users] First Letter Navigation

hello there;

well, lets just say, your not alone.
Letter navigation is not doable in windows live mail.

So whether you press ctrl+y=go to folder,
You'll still need to arrow to the folder you wish to access.
If you want letter navigation then you will need to change to outlook for
example.

-Original Message-
From: jaws-users-list-boun...@jaws-users.com
[mailto:jaws-users-list-boun...@jaws-users.com] On Behalf Of Scorpio
Sent: Tuesday, July 24, 2012 11:52 PM
To: jaws-users-list@jaws-users.com
Subject: [JAWS-Users] First Letter Navigation

Hi All,

Is anyone having this problem of not being able to use first letter
navigation in the folder hierarchy in Windows Live Mail?  I am currently
using Jaws 13, latest build, Windows 7, 32 bit, with all updates installed,
and yet, I am not able to use first letter navigation within the folder list
of Windows Live Mail.

I am able to use it in Windows Explorer, and other applications, but not in
WLM.

Does anyone have a fix for this problem, or is anyone even remotely going
through this same problem?

Any help would be appreciated.

Scorpio
For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


[JAWS-Users] latest Jaws update

2012-07-25 Thread Alex Stone
I don't mean to bitch about FS, but why is it that they can't post the list
of changes in the latest release when they post the release itself?

Cheers

Alex

For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


Re: [JAWS-Users] latest Jaws update

2012-07-25 Thread Steve
They do, go look in the what's new section.  It is listed there, Jaws 
13.1001, and below its list of five changes are the previous versions.


- Original Message - 
From: Alex Stone
To: jaws-users-list@jaws-users.com
Sent: Wednesday, July 25, 2012 6:11 PM
Subject: [JAWS-Users] latest Jaws update


I don't mean to bitch about FS, but why is it that they can't post the list
of changes in the latest release when they post the release itself?

Cheers

Alex

For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/ 
For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


Re: [JAWS-Users] latest Jaws update

2012-07-25 Thread Rick Justice
Perhaps FS would be the ones to ask?

Rick Justice
- Original Message - 
From: Alex Stone alexstone...@btinternet.com
To: jaws-users-list@jaws-users.com
Sent: Wednesday, July 25, 2012 6:11 PM
Subject: [JAWS-Users] latest Jaws update


I don't mean to bitch about FS, but why is it that they can't post the list
of changes in the latest release when they post the release itself?

Cheers

Alex

For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/

For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


Re: [JAWS-Users] latest Jaws update

2012-07-25 Thread Cristobal
Just click on the enhancements link on the update page and you can read to
your heart's content about the bugs addressed in the new release.
http://www.freedomscientific.com/downloads/jaws/JAWS13-previous-enhancements
.asp
-Original Message-
From: jaws-users-list-boun...@jaws-users.com
[mailto:jaws-users-list-boun...@jaws-users.com] On Behalf Of Alex Stone
Sent: Wednesday, July 25, 2012 3:12 PM
To: jaws-users-list@jaws-users.com
Subject: [JAWS-Users] latest Jaws update

I don't mean to bitch about FS, but why is it that they can't post the list
of changes in the latest release when they post the release itself?

Cheers

Alex

For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


Re: [JAWS-Users] latest Jaws update

2012-07-25 Thread Alex Stone
Not where I can find it it doesn't, and anyway the update is 13.0.1005
Cheers
Alex

-Original Message-
From: jaws-users-list-boun...@jaws-users.com
[mailto:jaws-users-list-boun...@jaws-users.com] On Behalf Of Steve
Sent: 25 July 2012 23:24
To: jaws-users-list@jaws-users.com
Subject: Re: [JAWS-Users] latest Jaws update

They do, go look in the what's new section.  It is listed there, Jaws 
13.1001, and below its list of five changes are the previous versions.


- Original Message - 
From: Alex Stone
To: jaws-users-list@jaws-users.com
Sent: Wednesday, July 25, 2012 6:11 PM
Subject: [JAWS-Users] latest Jaws update


I don't mean to bitch about FS, but why is it that they can't post the list
of changes in the latest release when they post the release itself?

Cheers

Alex

For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/ 
For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


Re: [JAWS-Users] latest Jaws update

2012-07-25 Thread David Ferrin
I'm getting a 404 error on the link provided.
David Ferrin
Compromise is never good if it means sacrificing a principle.
- Original Message - 
From: Cristobal crismuno...@gmail.com
To: jaws-users-list@jaws-users.com
Sent: Wednesday, July 25, 2012 6:25 PM
Subject: Re: [JAWS-Users] latest Jaws update


Just click on the enhancements link on the update page and you can read to
your heart's content about the bugs addressed in the new release.
http://www.freedomscientific.com/downloads/jaws/JAWS13-previous-enhancements
.asp
-Original Message-
From: jaws-users-list-boun...@jaws-users.com
[mailto:jaws-users-list-boun...@jaws-users.com] On Behalf Of Alex Stone
Sent: Wednesday, July 25, 2012 3:12 PM
To: jaws-users-list@jaws-users.com
Subject: [JAWS-Users] latest Jaws update

I don't mean to bitch about FS, but why is it that they can't post the list
of changes in the latest release when they post the release itself?

Cheers

Alex

For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/ 


For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


Re: [JAWS-Users] latest Jaws update

2012-07-25 Thread Rick Justice
Give this one a try:

http://www.freedomscientific.com/downloads/jaws/JAWS13-previous-enhancements.asp

HTH,
Rick Justice
- Original Message - 
From: David Ferrin ow...@jaws-users.com
To: jaws-users-list@jaws-users.com
Sent: Wednesday, July 25, 2012 6:37 PM
Subject: Re: [JAWS-Users] latest Jaws update


I'm getting a 404 error on the link provided.
David Ferrin
Compromise is never good if it means sacrificing a principle.
- Original Message - 
From: Cristobal crismuno...@gmail.com
To: jaws-users-list@jaws-users.com
Sent: Wednesday, July 25, 2012 6:25 PM
Subject: Re: [JAWS-Users] latest Jaws update


Just click on the enhancements link on the update page and you can read to
your heart's content about the bugs addressed in the new release.
http://www.freedomscientific.com/downloads/jaws/JAWS13-previous-enhancements
.asp
-Original Message-
From: jaws-users-list-boun...@jaws-users.com
[mailto:jaws-users-list-boun...@jaws-users.com] On Behalf Of Alex Stone
Sent: Wednesday, July 25, 2012 3:12 PM
To: jaws-users-list@jaws-users.com
Subject: [JAWS-Users] latest Jaws update

I don't mean to bitch about FS, but why is it that they can't post the list
of changes in the latest release when they post the release itself?

Cheers

Alex

For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/ 


For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


[JAWS-Users] Jaws 13.0.1005 Latest Update Download Links

2012-07-25 Thread MWB
Hi All,

Below are the direct download links for the latest Jaws update, J13.0.1005.

For 32 bit systems:

http://files.freedomscientific.com/WebFiles/JAWS/J13.0.1005-32bit.exe

For 64 bit systems:

http://files.freedomscientific.com/WebFiles/JAWS/J13.0.1005-64bit.exe

Hope this helps.  Take care.
Mike
This email was sent from my ILazyBoy.
For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


[JAWS-Users] test

2012-07-25 Thread Mike B.
This is just a test!
Take care.
Mike
This email was sent from my ILazyBoy.
For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


Re: [JAWS-Users] latest Jaws update

2012-07-25 Thread Miriam Vieni
It describes the enhancements up to the current upgrade but not the ones for
the current upgrade.

Miriam 

-Original Message-
From: jaws-users-list-boun...@jaws-users.com
[mailto:jaws-users-list-boun...@jaws-users.com] On Behalf Of Rick Justice
Sent: Wednesday, July 25, 2012 6:45 PM
To: jaws-users-list@jaws-users.com
Subject: Re: [JAWS-Users] latest Jaws update

Give this one a try:

http://www.freedomscientific.com/downloads/jaws/JAWS13-previous-enhancements
.asp

HTH,
Rick Justice
- Original Message -
From: David Ferrin ow...@jaws-users.com
To: jaws-users-list@jaws-users.com
Sent: Wednesday, July 25, 2012 6:37 PM
Subject: Re: [JAWS-Users] latest Jaws update


I'm getting a 404 error on the link provided.
David Ferrin
Compromise is never good if it means sacrificing a principle.
- Original Message - 
From: Cristobal crismuno...@gmail.com
To: jaws-users-list@jaws-users.com
Sent: Wednesday, July 25, 2012 6:25 PM
Subject: Re: [JAWS-Users] latest Jaws update


Just click on the enhancements link on the update page and you can read to
your heart's content about the bugs addressed in the new release.
http://www.freedomscientific.com/downloads/jaws/JAWS13-previous-enhancements
.asp
-Original Message-
From: jaws-users-list-boun...@jaws-users.com
[mailto:jaws-users-list-boun...@jaws-users.com] On Behalf Of Alex Stone
Sent: Wednesday, July 25, 2012 3:12 PM
To: jaws-users-list@jaws-users.com
Subject: [JAWS-Users] latest Jaws update

I don't mean to bitch about FS, but why is it that they can't post the list
of changes in the latest release when they post the release itself?

Cheers

Alex

For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/ 


For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/