Re: [JAWS-Users] wlm junk folder

2013-06-08 Thread David Ferrin
Try hitting the applications key on a message and check out the menu that
pops up. I'm thinking you will find something in there that might just help
you.

David Ferrin
A complex system that does not work is invariably found to have evolved from
a simpler system that worked perfectly.

-Original Message-
From: JAWS-Users-List [mailto:jaws-users-list-boun...@jaws-users.com] On
Behalf Of Lenny McHugh
Sent: Saturday, June 08, 2013 12:18 AM
To: JFW List
Subject: [JAWS-Users] wlm junk folder

Some of the messages from the idevices list are going into the junk folder.
Is there a way to identify them as not being junk?
---
Please visit my home page, it is motivational, educational, inspirational
with a touch of humor. There is also a very extensive resource list for the
blind.
http://www.LennyMcHugh.com
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] Auto Sizer

2013-06-08 Thread David Ferrin
I will have to test this code out and see if it works for me or not. It does
seem a bit complicated but manageable. 

I do always appreciate any contributions to my collection of scripts either
to the web site or for my personal stockpile so to speak. 

Donnie you might need further help so something will get worked out if that
is the case. 
David Ferrin
A complex system that does not work is invariably found to have evolved from
a simpler system that worked perfectly.


-Original Message-
From: JAWS-Users-List [mailto:jaws-users-list-boun...@jaws-users.com] On
Behalf Of Csaba Godo
Sent: Friday, June 07, 2013 11:12 PM
To: jaws-users-list@jaws-users.com
Subject: Re: [JAWS-Users] Auto Sizer

Hi David  Don,

I think I could suggest you two other methods to maximize a window.

1. Use SendMessage function. Insert this line in the AutoStart event:
SendMessage(GetAppMainWindow(GetFocus()), 274, 61488, 0). It will maximize
the active window.

2. Use some workaround. It is a simpler method. It needs some refining,
because I write it down from memory. This script toggles window state
between maximized and normal. But you can extend it so, that it supports
only maximized and minimized state.
This script works in all windows having system menu. The menu you can call
with Alt+Space.
Script ToggleRestoreWindow ()
;This script make notepad maximize or restore Var String sName, String
sShortname ;Get the name of currently open file SpeechOff () TypeKey
{Alt+space} If GetControlAttributes (false)==4 then ;the Restore option is
unavailable TypeKey {x} ;send letter x to current application Let
sName=FormatString (Maximize_l, GetAppTitle ()) Let sShortname=FormatString
(Maximize_s, GetAppTitle ()) Else ;windows is currently maximize EnterKey ()
Let sName=FormatString (restore_l, GetAppTitle ()) Let
sShortname=FormatString (restore_s, GetAppTitle ()) EndIf Pause () SpeechOn
() SayFormattedMessage (ot_message, sName, sShortName) EndScript HTH

Csaba

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] Auto Sizer

2013-06-08 Thread David Ferrin
Since you mentioned the first script line go in the auto start event
function for maximizing a message window it seemed reasonable to figure you
are referring to an email client. Since at this time the only client I have
at my disposal is outlook 2007 I checked and mine at least does not have an
auto start event. Obviously I can create such an animal but before I do
please clarify the program you meant. 

Actually my inbox and messages always come up maximized so there is no
problem here with that kind of stuff at all so far anyway. 

If memory serves Donnie's original question was directed at IE specifically
at a certain web page which I have not had a chance to look at as of yet.
Unfortunately I do not have the original message that started this thread so
Donnie if you would be so kind as to send the address again. 

I am going to test your code out, of that you can rest assured as it looks
interesting to me at least. It reminds me of my mainframe days on the old
IBM 3090 but that is another story. 
David Ferrin
A complex system that does not work is invariably found to have evolved from
a simpler system that worked perfectly.

-Original Message-
From: JAWS-Users-List [mailto:jaws-users-list-boun...@jaws-users.com] On
Behalf Of David Ferrin
Sent: Saturday, June 08, 2013 6:36 AM
To: jaws-users-list@jaws-users.com
Subject: Re: [JAWS-Users] Auto Sizer

I will have to test this code out and see if it works for me or not. It does
seem a bit complicated but manageable. 

I do always appreciate any contributions to my collection of scripts either
to the web site or for my personal stockpile so to speak. 

Donnie you might need further help so something will get worked out if that
is the case. 
David Ferrin
A complex system that does not work is invariably found to have evolved from
a simpler system that worked perfectly.


-Original Message-
From: JAWS-Users-List [mailto:jaws-users-list-boun...@jaws-users.com] On
Behalf Of Csaba Godo
Sent: Friday, June 07, 2013 11:12 PM
To: jaws-users-list@jaws-users.com
Subject: Re: [JAWS-Users] Auto Sizer

Hi David  Don,

I think I could suggest you two other methods to maximize a window.

1. Use SendMessage function. Insert this line in the AutoStart event:
SendMessage(GetAppMainWindow(GetFocus()), 274, 61488, 0). It will maximize
the active window.

2. Use some workaround. It is a simpler method. It needs some refining,
because I write it down from memory. This script toggles window state
between maximized and normal. But you can extend it so, that it supports
only maximized and minimized state.
This script works in all windows having system menu. The menu you can call
with Alt+Space.
Script ToggleRestoreWindow ()
;This script make notepad maximize or restore Var String sName, String
sShortname ;Get the name of currently open file SpeechOff () TypeKey
{Alt+space} If GetControlAttributes (false)==4 then ;the Restore option is
unavailable TypeKey {x} ;send letter x to current application Let
sName=FormatString (Maximize_l, GetAppTitle ()) Let sShortname=FormatString
(Maximize_s, GetAppTitle ()) Else ;windows is currently maximize EnterKey ()
Let sName=FormatString (restore_l, GetAppTitle ()) Let
sShortname=FormatString (restore_s, GetAppTitle ()) EndIf Pause () SpeechOn
() SayFormattedMessage (ot_message, sName, sShortName) EndScript HTH

Csaba

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] sorting deleted e-mails in Outlook 2010

2013-06-08 Thread David Whitehead
hello Stephanie

try the following;
 while in the deleted folder,
press alt+v=view,
now tab until you hear arrange by,
you can press either the spacebar or enter key,
now you can use your tab key and find the setting you wish to change.
hope this helps.

-Original Message-
From: JAWS-Users-List [mailto:jaws-users-list-boun...@jaws-users.com] On
Behalf Of Stephanie Koetje
Sent: Friday, June 7, 2013 1:12 PM
To: jaws-users-list@jaws-users.com
Subject: [JAWS-Users] sorting deleted e-mails in Outlook 2010

Hi all,
In Outlook 2007 I was able to sort my deleted e-mails by who the e-mails
were from, but I'm not able to find the from option in Outlook 2010. Is it
hidden somewhere or is it just not an option anymore?
I'm using Jaws 14.
Thanks for your help,
Stephanie


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] wlm junk folder

2013-06-08 Thread Lenny McHugh
Thanks my friend, I was there but somehow skippedover the junk folder 
options. I wasable to add sender to the safe sender list.


-Original Message- 
From: David Ferrin

Sent: Saturday, June 08, 2013 6:31 AM
To: jaws-users-list@jaws-users.com
Subject: Re: [JAWS-Users] wlm junk folder

Try hitting the applications key on a message and check out the menu that
pops up. I'm thinking you will find something in there that might just help
you.

David Ferrin
A complex system that does not work is invariably found to have evolved from
a simpler system that worked perfectly.

-Original Message-
From: JAWS-Users-List [mailto:jaws-users-list-boun...@jaws-users.com] On
Behalf Of Lenny McHugh
Sent: Saturday, June 08, 2013 12:18 AM
To: JFW List
Subject: [JAWS-Users] wlm junk folder

Some of the messages from the idevices list are going into the junk folder.
Is there a way to identify them as not being junk?
---
Please visit my home page, it is motivational, educational, inspirational
with a touch of humor. There is also a very extensive resource list for the
blind.
http://www.LennyMcHugh.com
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] Auto Sizer

2013-06-08 Thread Mike B.
Hi David  Donnie,

I tried AutoSizers latest version on my Widows7 64 bit system  it didn't 
work well at all but, it works just fine on my Widows7 32 bit system.  On my 
64 bit system I use Max Monkey  I haven't had any problems with this 
program.  The price of Max Monkey is somewhere between $10  $20.  Check it 
out:

http://www.monkeyjob.com/MaxMonk.html


Take care.
Mike
This email was sent from my, iBarstool.

- Original Message - 
From: David Ferrin
To: jaws-users-list@jaws-users.com
Sent: Saturday, June 08, 2013 3:58 AM
Subject: Re: [JAWS-Users] Auto Sizer


Since you mentioned the first script line go in the auto start event
function for maximizing a message window it seemed reasonable to figure you
are referring to an email client. Since at this time the only client I have
at my disposal is outlook 2007 I checked and mine at least does not have an
auto start event. Obviously I can create such an animal but before I do
please clarify the program you meant.

Actually my inbox and messages always come up maximized so there is no
problem here with that kind of stuff at all so far anyway.

If memory serves Donnie's original question was directed at IE specifically
at a certain web page which I have not had a chance to look at as of yet.
Unfortunately I do not have the original message that started this thread so
Donnie if you would be so kind as to send the address again.

I am going to test your code out, of that you can rest assured as it looks
interesting to me at least. It reminds me of my mainframe days on the old
IBM 3090 but that is another story.
David Ferrin
A complex system that does not work is invariably found to have evolved from
a simpler system that worked perfectly.

-Original Message-
From: JAWS-Users-List [mailto:jaws-users-list-boun...@jaws-users.com] On
Behalf Of David Ferrin
Sent: Saturday, June 08, 2013 6:36 AM
To: jaws-users-list@jaws-users.com
Subject: Re: [JAWS-Users] Auto Sizer

I will have to test this code out and see if it works for me or not. It does
seem a bit complicated but manageable.

I do always appreciate any contributions to my collection of scripts either
to the web site or for my personal stockpile so to speak.

Donnie you might need further help so something will get worked out if that
is the case.
David Ferrin
A complex system that does not work is invariably found to have evolved from
a simpler system that worked perfectly.


-Original Message-
From: JAWS-Users-List [mailto:jaws-users-list-boun...@jaws-users.com] On
Behalf Of Csaba Godo
Sent: Friday, June 07, 2013 11:12 PM
To: jaws-users-list@jaws-users.com
Subject: Re: [JAWS-Users] Auto Sizer

Hi David  Don,

I think I could suggest you two other methods to maximize a window.

1. Use SendMessage function. Insert this line in the AutoStart event:
SendMessage(GetAppMainWindow(GetFocus()), 274, 61488, 0). It will maximize
the active window.

2. Use some workaround. It is a simpler method. It needs some refining,
because I write it down from memory. This script toggles window state
between maximized and normal. But you can extend it so, that it supports
only maximized and minimized state.
This script works in all windows having system menu. The menu you can call
with Alt+Space.
Script ToggleRestoreWindow ()
;This script make notepad maximize or restore Var String sName, String
sShortname ;Get the name of currently open file SpeechOff () TypeKey
{Alt+space} If GetControlAttributes (false)==4 then ;the Restore option is
unavailable TypeKey {x} ;send letter x to current application Let
sName=FormatString (Maximize_l, GetAppTitle ()) Let sShortname=FormatString
(Maximize_s, GetAppTitle ()) Else ;windows is currently maximize EnterKey ()
Let sName=FormatString (restore_l, GetAppTitle ()) Let
sShortname=FormatString (restore_s, GetAppTitle ()) EndIf Pause () SpeechOn
() SayFormattedMessage (ot_message, sName, sShortName) EndScript HTH

Csaba

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] Auto Sizer

2013-06-08 Thread David Ferrin
You are correct although I haven't used it for some time now. Possibly I
need to re-visit that program again soon. I am curious about Scaba's last
post although I haven't made any progress with it yet, of course it is
Saturday. 
David Ferrin
Always be yourself because the people that matter don't mind, and the ones
that mind don't matter.
-Original Message-
From: JAWS-Users-List [mailto:jaws-users-list-boun...@jaws-users.com] On
Behalf Of Mike B.
Sent: Saturday, June 08, 2013 9:29 AM
To: jaws-users-list@jaws-users.com
Subject: Re: [JAWS-Users] Auto Sizer

Hi David  Donnie,

I tried AutoSizers latest version on my Widows7 64 bit system  it didn't
work well at all but, it works just fine on my Widows7 32 bit system.  On my
64 bit system I use Max Monkey  I haven't had any problems with this
program.  The price of Max Monkey is somewhere between $10  $20.  Check it
out:

http://www.monkeyjob.com/MaxMonk.html


Take care.
Mike
This email was sent from my, iBarstool.

- Original Message -
From: David Ferrin
To: jaws-users-list@jaws-users.com
Sent: Saturday, June 08, 2013 3:58 AM
Subject: Re: [JAWS-Users] Auto Sizer


Since you mentioned the first script line go in the auto start event
function for maximizing a message window it seemed reasonable to figure you
are referring to an email client. Since at this time the only client I have
at my disposal is outlook 2007 I checked and mine at least does not have an
auto start event. Obviously I can create such an animal but before I do
please clarify the program you meant.

Actually my inbox and messages always come up maximized so there is no
problem here with that kind of stuff at all so far anyway.

If memory serves Donnie's original question was directed at IE specifically
at a certain web page which I have not had a chance to look at as of yet.
Unfortunately I do not have the original message that started this thread so
Donnie if you would be so kind as to send the address again.

I am going to test your code out, of that you can rest assured as it looks
interesting to me at least. It reminds me of my mainframe days on the old
IBM 3090 but that is another story.
David Ferrin
A complex system that does not work is invariably found to have evolved from
a simpler system that worked perfectly.

-Original Message-
From: JAWS-Users-List [mailto:jaws-users-list-boun...@jaws-users.com] On
Behalf Of David Ferrin
Sent: Saturday, June 08, 2013 6:36 AM
To: jaws-users-list@jaws-users.com
Subject: Re: [JAWS-Users] Auto Sizer

I will have to test this code out and see if it works for me or not. It does
seem a bit complicated but manageable.

I do always appreciate any contributions to my collection of scripts either
to the web site or for my personal stockpile so to speak.

Donnie you might need further help so something will get worked out if that
is the case.
David Ferrin
A complex system that does not work is invariably found to have evolved from
a simpler system that worked perfectly.


-Original Message-
From: JAWS-Users-List [mailto:jaws-users-list-boun...@jaws-users.com] On
Behalf Of Csaba Godo
Sent: Friday, June 07, 2013 11:12 PM
To: jaws-users-list@jaws-users.com
Subject: Re: [JAWS-Users] Auto Sizer

Hi David  Don,

I think I could suggest you two other methods to maximize a window.

1. Use SendMessage function. Insert this line in the AutoStart event:
SendMessage(GetAppMainWindow(GetFocus()), 274, 61488, 0). It will maximize
the active window.

2. Use some workaround. It is a simpler method. It needs some refining,
because I write it down from memory. This script toggles window state
between maximized and normal. But you can extend it so, that it supports
only maximized and minimized state.
This script works in all windows having system menu. The menu you can call
with Alt+Space.
Script ToggleRestoreWindow ()
;This script make notepad maximize or restore Var String sName, String
sShortname ;Get the name of currently open file SpeechOff () TypeKey
{Alt+space} If GetControlAttributes (false)==4 then ;the Restore option is
unavailable TypeKey {x} ;send letter x to current application Let
sName=FormatString (Maximize_l, GetAppTitle ()) Let sShortname=FormatString
(Maximize_s, GetAppTitle ()) Else ;windows is currently maximize EnterKey ()
Let sName=FormatString (restore_l, GetAppTitle ()) Let
sShortname=FormatString (restore_s, GetAppTitle ()) EndIf Pause () SpeechOn
() SayFormattedMessage (ot_message, sName, sShortName) EndScript HTH

Csaba

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] wlm junk folder

2013-06-08 Thread David Ferrin
It's easy to pass right over it thinking it is not something you need to
concern about.

David Ferrin
Always be yourself because the people that matter don't mind, and the ones
that mind don't matter.

-Original Message-
From: JAWS-Users-List [mailto:jaws-users-list-boun...@jaws-users.com] On
Behalf Of Lenny McHugh
Sent: Saturday, June 08, 2013 7:42 AM
To: jaws-users-list@jaws-users.com
Subject: Re: [JAWS-Users] wlm junk folder

Thanks my friend, I was there but somehow skippedover the junk folder
options. I wasable to add sender to the safe sender list.

-Original Message-
From: David Ferrin
Sent: Saturday, June 08, 2013 6:31 AM
To: jaws-users-list@jaws-users.com
Subject: Re: [JAWS-Users] wlm junk folder

Try hitting the applications key on a message and check out the menu that
pops up. I'm thinking you will find something in there that might just help
you.

David Ferrin
A complex system that does not work is invariably found to have evolved from
a simpler system that worked perfectly.

-Original Message-
From: JAWS-Users-List [mailto:jaws-users-list-boun...@jaws-users.com] On
Behalf Of Lenny McHugh
Sent: Saturday, June 08, 2013 12:18 AM
To: JFW List
Subject: [JAWS-Users] wlm junk folder

Some of the messages from the idevices list are going into the junk folder.
Is there a way to identify them as not being junk?
---
Please visit my home page, it is motivational, educational, inspirational
with a touch of humor. There is also a very extensive resource list for the
blind.
http://www.LennyMcHugh.com
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] Auto Sizer

2013-06-08 Thread Donnie Parrett
Thanks David.  I definitely will need help with this.  I'll get in touch
with you in a day or so.

-Original Message-
From: JAWS-Users-List [mailto:jaws-users-list-boun...@jaws-users.com] On
Behalf Of David Ferrin
Sent: Saturday, June 08, 2013 6:36 AM
To: jaws-users-list@jaws-users.com
Subject: Re: [JAWS-Users] Auto Sizer

I will have to test this code out and see if it works for me or not. It does
seem a bit complicated but manageable. 

I do always appreciate any contributions to my collection of scripts either
to the web site or for my personal stockpile so to speak. 

Donnie you might need further help so something will get worked out if that
is the case. 
David Ferrin
A complex system that does not work is invariably found to have evolved from
a simpler system that worked perfectly.


-Original Message-
From: JAWS-Users-List [mailto:jaws-users-list-boun...@jaws-users.com] On
Behalf Of Csaba Godo
Sent: Friday, June 07, 2013 11:12 PM
To: jaws-users-list@jaws-users.com
Subject: Re: [JAWS-Users] Auto Sizer

Hi David  Don,

I think I could suggest you two other methods to maximize a window.

1. Use SendMessage function. Insert this line in the AutoStart event:
SendMessage(GetAppMainWindow(GetFocus()), 274, 61488, 0). It will maximize
the active window.

2. Use some workaround. It is a simpler method. It needs some refining,
because I write it down from memory. This script toggles window state
between maximized and normal. But you can extend it so, that it supports
only maximized and minimized state.
This script works in all windows having system menu. The menu you can call
with Alt+Space.
Script ToggleRestoreWindow ()
;This script make notepad maximize or restore Var String sName, String
sShortname ;Get the name of currently open file SpeechOff () TypeKey
{Alt+space} If GetControlAttributes (false)==4 then ;the Restore option is
unavailable TypeKey {x} ;send letter x to current application Let
sName=FormatString (Maximize_l, GetAppTitle ()) Let sShortname=FormatString
(Maximize_s, GetAppTitle ()) Else ;windows is currently maximize EnterKey ()
Let sName=FormatString (restore_l, GetAppTitle ()) Let
sShortname=FormatString (restore_s, GetAppTitle ()) EndIf Pause () SpeechOn
() SayFormattedMessage (ot_message, sName, sShortName) EndScript HTH

Csaba

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] How can I go back from IE 10 to IE 8?

2013-06-08 Thread Jo Luland

Hi,
My computer automatically installed IE 10. As a result, I can no longer do 
things I'm used to doing like reading newspapers, and navigate certain 
websites. I know it's probably settings that need to be changed, but I don't 
know which ones. In control panel, I've never had luck with changing my 
theme. I do what I think should be done which is to be set to classic, but 
every time I check it, it seems to be on another theme or unsaved theme. 
Where can I uninstall IE 10 so my life can return to what I feel is normal 
for me? I've always welcomed changes in technology, but Windows7 and I have 
just never gotten along for some reason. This situation happened too with IE 
9, but I was able to revert to 8, but I don't remember what I did because I 
tried so many different things. I went to the control panel and checked to 
have updates downloaded, but let me choose when to install, but even that 
didn't make much difference to Microsoft. I'm running windows7 with JAWS14 
latest build. Any suggestions will be greatly appreciated. I would like to 
work with IE 10 if I had a step-by-step instructional explanation regarding 
all necessary changes, but for now, I need to go back to IE 8. Thanks in 
advance for your help.

Jo




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


[JAWS-Users] Solve PC Issues

2013-06-08 Thread Donnie Parrett
When I hit f11 to see my system tray, there is something there that says
Solve PC Issues (1 message).  I can't seem to get anything out of it when
I enter.  Could someone please tell me what this means?  I am using a
Windows 7 64 bit machine and running JAWS 14.

Thanks,
Donnie


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


Re: [JAWS-Users] How can I go back from IE 10 to IE 8?

2013-06-08 Thread Fred Adams
I have the same setup as you and I also tried to install IE9 several times
and the computer also installed IE10 and locked up my computer everytime.
The last time, I had to take the computer to a computer Technician to
unlock my computer.  I am now back to IE8 where it will stay.

-Original Message-
From: JAWS-Users-List [mailto:jaws-users-list-boun...@jaws-users.com] On
Behalf Of Jo Luland
Sent: Saturday, June 08, 2013 10:59 AM
To: jaws-users-list@jaws-users.com
Subject: Re: [JAWS-Users] How can I go back from IE 10 to IE 8?

Hi,
My computer automatically installed IE 10. As a result, I can no longer do
things I'm used to doing like reading newspapers, and navigate certain
websites. I know it's probably settings that need to be changed, but I
don't know which ones. In control panel, I've never had luck with changing
my theme. I do what I think should be done which is to be set to classic,
but every time I check it, it seems to be on another theme or unsaved
theme. 
Where can I uninstall IE 10 so my life can return to what I feel is normal
for me? I've always welcomed changes in technology, but Windows7 and I have
just never gotten along for some reason. This situation happened too with
IE 9, but I was able to revert to 8, but I don't remember what I did
because I tried so many different things. I went to the control panel and
checked to have updates downloaded, but let me choose when to install, but
even that didn't make much difference to Microsoft. I'm running windows7
with JAWS14 latest build. Any suggestions will be greatly appreciated. I
would like to work with IE 10 if I had a step-by-step instructional
explanation regarding all necessary changes, but for now, I need to go back
to IE 8. Thanks in advance for your help.
Jo

 


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] How can I go back from IE 10 to IE 8?

2013-06-08 Thread RJ
Just uninstall 10 and 9. Make sure you hide 10 and 9 or you will be doing 
this again.

RJ
- Original Message - 
From: Jo Luland jolul...@verizon.net

To: jaws-users-list@jaws-users.com
Sent: Saturday, June 08, 2013 10:59 AM
Subject: Re: [JAWS-Users] How can I go back from IE 10 to IE 8?



Hi,
My computer automatically installed IE 10. As a result, I can no longer do 
things I'm used to doing like reading newspapers, and navigate certain 
websites. I know it's probably settings that need to be changed, but I 
don't know which ones. In control panel, I've never had luck with changing 
my theme. I do what I think should be done which is to be set to classic, 
but every time I check it, it seems to be on another theme or unsaved 
theme. Where can I uninstall IE 10 so my life can return to what I feel 
is normal for me? I've always welcomed changes in technology, but Windows7 
and I have just never gotten along for some reason. This situation 
happened too with IE 9, but I was able to revert to 8, but I don't 
remember what I did because I tried so many different things. I went to 
the control panel and checked to have updates downloaded, but let me 
choose when to install, but even that didn't make much difference to 
Microsoft. I'm running windows7 with JAWS14 latest build. Any suggestions 
will be greatly appreciated. I would like to work with IE 10 if I had a 
step-by-step instructional explanation regarding all necessary changes, 
but for now, I need to go back to IE 8. Thanks in advance for your help.

Jo




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] How can I go back from IE 10 to IE 8?

2013-06-08 Thread Waqas Chauhdry
Go to the control panel, programmes and features then, tab across to
installed updates and hit enter. You will find the most recent version of IE
in the list. Press enter on it and follow the prompts to uninstall. Now, you
should be back to the last installed version of IE. 

Very Best Regards

Waqas  

-Original Message-
From: JAWS-Users-List [mailto:jaws-users-list-boun...@jaws-users.com] On
Behalf Of Jo Luland
Sent: 08 June 2013 15:59
To: jaws-users-list@jaws-users.com
Subject: Re: [JAWS-Users] How can I go back from IE 10 to IE 8?

Hi,
My computer automatically installed IE 10. As a result, I can no longer do
things I'm used to doing like reading newspapers, and navigate certain
websites. I know it's probably settings that need to be changed, but I don't
know which ones. In control panel, I've never had luck with changing my
theme. I do what I think should be done which is to be set to classic, but
every time I check it, it seems to be on another theme or unsaved theme. 
Where can I uninstall IE 10 so my life can return to what I feel is normal
for me? I've always welcomed changes in technology, but Windows7 and I have
just never gotten along for some reason. This situation happened too with IE
9, but I was able to revert to 8, but I don't remember what I did because I
tried so many different things. I went to the control panel and checked to
have updates downloaded, but let me choose when to install, but even that
didn't make much difference to Microsoft. I'm running windows7 with JAWS14
latest build. Any suggestions will be greatly appreciated. I would like to
work with IE 10 if I had a step-by-step instructional explanation regarding
all necessary changes, but for now, I need to go back to IE 8. Thanks in
advance for your help.
Jo

 


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


-
No virus found in this message.
Checked by AVG - www.avg.com
Version: 2013.0.3343 / Virus Database: 3199/6394 - Release Date: 06/08/13


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


Re: [JAWS-Users] the Passkey Through function

2013-06-08 Thread Rose Combs
I use the pass-through a lot at work, Dolbey Fusion loves to make my life
difficult, things I could do in 2007 with our old program are totally not
accessible to me now and when I have to tell the boss I could not use the
provided routines because the markers where you fill stuff in are graphics
that cannot be labeled, don't even show up in Jaws, not seen or heard and I
have to keep telling her because her memory for most things is about two
seconds I curse them and Jaws for not working well together.  I cannot
consider NVDA because the computer is locked down too tightly and I don't
know how to use it.  

A job I did for over 30 years with truly minor access issues is now about
two-thirds not accessible for me.  


Rose Combs
roseco...@q.com


-Original Message-
From: JAWS-Users-List [mailto:jaws-users-list-boun...@jaws-users.com] On
Behalf Of David Ferrin
Sent: Thursday, June 06, 2013 10:18 AM
To: jaws-users-list@jaws-users.com
Subject: [JAWS-Users] the PassKeyThrough function

Thank you to the gentleman who mentioned this script yesterday. I just took
a little stroll in the function list and found it. The thing is so simple to
manipulate it surprised me. I just wrote a test script and assigned it to a
keystroke that I know is used everywhere IE insert + number pad 5 and bing
bang boom the next line that was the command line for the script ran like a
charm, sweet. 

 

There are so many of those things in there I doubt I'll ever master them but
it would be great if I could all right. 

David Ferrin
A complex system that does not work is invariably found to have evolved from
a simpler system that worked perfectly.

 

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] HOW TO ACCESS FEEDS IN ie 9 with Jaws 13

2013-06-08 Thread Shari
Hi All,

Using Jaws 12 and IE 8 Jaws key plus j would take me to a feeds treview where 
all the feeds I subscribe to would be. In Jaws 13 and IE 9, that key combo 
opens downloads, but it just appears to be program downloads. How do I access 
the feeds?
Thank yu,
Shari
For answers to frequently asked questions about this list visit:
http://www.jaws-users.com/help/


Re: [JAWS-Users] HOW TO ACCESS FEEDS IN ie 9 with Jaws 13

2013-06-08 Thread Negoslav Sabev

You can access feeds with ctrl+g.

Negoslav
- Original Message - 
From: Shari shariw...@sbcglobal.net

To: jaws-users-list@jaws-users.com
Sent: Saturday, June 08, 2013 9:57 PM
Subject: [JAWS-Users] HOW TO ACCESS FEEDS IN ie 9 with Jaws 13



Hi All,

Using Jaws 12 and IE 8 Jaws key plus j would take me to a feeds treview 
where all the feeds I subscribe to would be. In Jaws 13 and IE 9, that key 
combo opens downloads, but it just appears to be program downloads. How do 
I access the feeds?

Thank yu,
Shari
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] HOW TO ACCESS FEEDS IN ie 9 with Jaws 13

2013-06-08 Thread Shari

Thanks so much!

- Original Message - 
From: Negoslav Sabev neg...@gmail.com

To: jaws-users-list@jaws-users.com
Sent: Saturday, June 08, 2013 3:20 PM
Subject: Re: [JAWS-Users] HOW TO ACCESS FEEDS IN ie 9 with Jaws 13



You can access feeds with ctrl+g.

Negoslav
- Original Message - 
From: Shari shariw...@sbcglobal.net

To: jaws-users-list@jaws-users.com
Sent: Saturday, June 08, 2013 9:57 PM
Subject: [JAWS-Users] HOW TO ACCESS FEEDS IN ie 9 with Jaws 13



Hi All,

Using Jaws 12 and IE 8 Jaws key plus j would take me to a feeds treview 
where all the feeds I subscribe to would be. In Jaws 13 and IE 9, that 
key combo opens downloads, but it just appears to be program downloads. 
How do I access the feeds?

Thank yu,
Shari
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] Auto Sizer

2013-06-08 Thread David Ferrin
I will take a look at it when I can, possibly toward the middle of next week
at the soonest. 

David Ferrin
A complex system that does not work is invariably found to have evolved from
a simpler system that worked perfectly.

-Original Message-
From: JAWS-Users-List [mailto:jaws-users-list-boun...@jaws-users.com] On
Behalf Of Donnie Parrett
Sent: Saturday, June 08, 2013 10:52 AM
To: jaws-users-list@jaws-users.com
Subject: Re: [JAWS-Users] Auto Sizer

David, one of the sites that I frequently use is:
www.biblegateway.com

-Original Message-
From: JAWS-Users-List [mailto:jaws-users-list-boun...@jaws-users.com] On
Behalf Of David Ferrin
Sent: Saturday, June 08, 2013 6:58 AM
To: jaws-users-list@jaws-users.com
Subject: Re: [JAWS-Users] Auto Sizer

Since you mentioned the first script line go in the auto start event
function for maximizing a message window it seemed reasonable to figure you
are referring to an email client. Since at this time the only client I have
at my disposal is outlook 2007 I checked and mine at least does not have an
auto start event. Obviously I can create such an animal but before I do
please clarify the program you meant. 

Actually my inbox and messages always come up maximized so there is no
problem here with that kind of stuff at all so far anyway. 

If memory serves Donnie's original question was directed at IE specifically
at a certain web page which I have not had a chance to look at as of yet.
Unfortunately I do not have the original message that started this thread so
Donnie if you would be so kind as to send the address again. 

I am going to test your code out, of that you can rest assured as it looks
interesting to me at least. It reminds me of my mainframe days on the old
IBM 3090 but that is another story. 
David Ferrin
A complex system that does not work is invariably found to have evolved from
a simpler system that worked perfectly.

-Original Message-
From: JAWS-Users-List [mailto:jaws-users-list-boun...@jaws-users.com] On
Behalf Of David Ferrin
Sent: Saturday, June 08, 2013 6:36 AM
To: jaws-users-list@jaws-users.com
Subject: Re: [JAWS-Users] Auto Sizer

I will have to test this code out and see if it works for me or not. It does
seem a bit complicated but manageable. 

I do always appreciate any contributions to my collection of scripts either
to the web site or for my personal stockpile so to speak. 

Donnie you might need further help so something will get worked out if that
is the case. 
David Ferrin
A complex system that does not work is invariably found to have evolved from
a simpler system that worked perfectly.


-Original Message-
From: JAWS-Users-List [mailto:jaws-users-list-boun...@jaws-users.com] On
Behalf Of Csaba Godo
Sent: Friday, June 07, 2013 11:12 PM
To: jaws-users-list@jaws-users.com
Subject: Re: [JAWS-Users] Auto Sizer

Hi David  Don,

I think I could suggest you two other methods to maximize a window.

1. Use SendMessage function. Insert this line in the AutoStart event:
SendMessage(GetAppMainWindow(GetFocus()), 274, 61488, 0). It will maximize
the active window.

2. Use some workaround. It is a simpler method. It needs some refining,
because I write it down from memory. This script toggles window state
between maximized and normal. But you can extend it so, that it supports
only maximized and minimized state.
This script works in all windows having system menu. The menu you can call
with Alt+Space.
Script ToggleRestoreWindow ()
;This script make notepad maximize or restore Var String sName, String
sShortname ;Get the name of currently open file SpeechOff () TypeKey
{Alt+space} If GetControlAttributes (false)==4 then ;the Restore option is
unavailable TypeKey {x} ;send letter x to current application Let
sName=FormatString (Maximize_l, GetAppTitle ()) Let sShortname=FormatString
(Maximize_s, GetAppTitle ()) Else ;windows is currently maximize EnterKey ()
Let sName=FormatString (restore_l, GetAppTitle ()) Let
sShortname=FormatString (restore_s, GetAppTitle ()) EndIf Pause () SpeechOn
() SayFormattedMessage (ot_message, sName, sShortName) EndScript HTH

Csaba

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] Auto Sizer

2013-06-08 Thread Csaba Godo

Hi David,

The second method, the sendig keystrokes method works with all windows 
which have system menu, which can be opened by pressing ALT+SPACE keys. 
This script simply opens this menu and then presses the Maximize menu 
item. So it is application independent. It handles all app windows 
having this system menu.


Have a nice saturday!

Tshaba from Hungary



Tshaba


2013.06.08. 12:58 keltezéssel, David Ferrin írta:

Since you mentioned the first script line go in the auto start event
function for maximizing a message window it seemed reasonable to figure you
are referring to an email client. Since at this time the only client I have
at my disposal is outlook 2007 I checked and mine at least does not have an
auto start event. Obviously I can create such an animal but before I do
please clarify the program you meant.

Actually my inbox and messages always come up maximized so there is no
problem here with that kind of stuff at all so far anyway.

If memory serves Donnie's original question was directed at IE specifically
at a certain web page which I have not had a chance to look at as of yet.
Unfortunately I do not have the original message that started this thread so
Donnie if you would be so kind as to send the address again.

I am going to test your code out, of that you can rest assured as it looks
interesting to me at least. It reminds me of my mainframe days on the old
IBM 3090 but that is another story.
David Ferrin
A complex system that does not work is invariably found to have evolved from
a simpler system that worked perfectly.

-Original Message-
From: JAWS-Users-List [mailto:jaws-users-list-boun...@jaws-users.com] On
Behalf Of David Ferrin
Sent: Saturday, June 08, 2013 6:36 AM
To: jaws-users-list@jaws-users.com
Subject: Re: [JAWS-Users] Auto Sizer

I will have to test this code out and see if it works for me or not. It does
seem a bit complicated but manageable.

I do always appreciate any contributions to my collection of scripts either
to the web site or for my personal stockpile so to speak.

Donnie you might need further help so something will get worked out if that
is the case.
David Ferrin
A complex system that does not work is invariably found to have evolved from
a simpler system that worked perfectly.


-Original Message-
From: JAWS-Users-List [mailto:jaws-users-list-boun...@jaws-users.com] On
Behalf Of Csaba Godo
Sent: Friday, June 07, 2013 11:12 PM
To: jaws-users-list@jaws-users.com
Subject: Re: [JAWS-Users] Auto Sizer

Hi David  Don,

I think I could suggest you two other methods to maximize a window.

1. Use SendMessage function. Insert this line in the AutoStart event:
SendMessage(GetAppMainWindow(GetFocus()), 274, 61488, 0). It will maximize
the active window.

2. Use some workaround. It is a simpler method. It needs some refining,
because I write it down from memory. This script toggles window state
between maximized and normal. But you can extend it so, that it supports
only maximized and minimized state.
This script works in all windows having system menu. The menu you can call
with Alt+Space.
Script ToggleRestoreWindow ()
;This script make notepad maximize or restore Var String sName, String
sShortname ;Get the name of currently open file SpeechOff () TypeKey
{Alt+space} If GetControlAttributes (false)==4 then ;the Restore option is
unavailable TypeKey {x} ;send letter x to current application Let
sName=FormatString (Maximize_l, GetAppTitle ()) Let sShortname=FormatString
(Maximize_s, GetAppTitle ()) Else ;windows is currently maximize EnterKey ()
Let sName=FormatString (restore_l, GetAppTitle ()) Let
sShortname=FormatString (restore_s, GetAppTitle ()) EndIf Pause () SpeechOn
() SayFormattedMessage (ot_message, sName, sShortName) EndScript HTH

Csaba

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/