Re: [program-l] Re: Not reading correctly, visual studio 2008 andlatest Jaws

  • From: Jacob Kruger <jacobk@xxxxxxxxxxxxxx>
  • To: programmingblind@xxxxxxxxxxxxx
  • Date: Thu, 19 May 2011 15:25:10 +0200

Perfect!!

Thanks


----- Original Message ---------------

Subject: Re: [program-l] Re: Not reading correctly, visual studio 2008 
andlatest Jaws
   From: Jamal Mazrui <empower@xxxxxxxxx>
   Date: Thu, 19 May 2011 09:09:59 -0400
     To: program-l@xxxxxxxxxxxxx
     Cc: "seanpm@xxxxxxxxxxxx" <seanpm@xxxxxxxxxxxx>,
         programmingblind <programmingblind@xxxxxxxxxxxxx>

>Thanks, Sean!  I have incorporated those changes in an updated script 
>package at the usual addresses:
>
>http://EmpowermentZone.com/msenv2005.exe
>
>or for a manual install
>http://EmpowermentZone.com/msenv2005.zip
>
>Would someone confirm that installing these new scripts fixes the problem?
>
>Jamal
>
>
>On 5/18/2011 3:01 PM, seanpm@xxxxxxxxxxxx wrote:
>> Hi guys,
>>
>> I think I?ve fixed the problem.  I replaced the line:
>> PerformScript SayNextCharacter ()
>> With the lines:
>> NextCharacter ()
>> SayCharacter ()
>> In the LeftArrow and RightArrow scripts in the visual studio jss file.
>> Here are the new LeftArrow and RightArrow scripts that work for me:
>>
>> Script leftarrow ()
>> if InDesignView(VS_True) then
>> SpeechOff()
>> TypeCurrentScriptKey ()
>> Delay(2, VS_False)
>> setDesignLocations()
>> SpeechOn()
>> SayString("Left "+IntToString(iControlLeft));
>> Else
>> PriorCharacter ()
>> SayCharacter ()
>> ;PerformScript SayPriorCharacter()
>> EndIf
>> EndScript
>>
>>
>> Script rightArrow ()
>> if InDesignView(VS_True) then
>> SpeechOff()
>> TypeCurrentScriptKey ()
>> Delay(2, VS_False)
>> setDesignLocations()
>> SpeechOn()
>> SayString("Left "+IntToString(iControlLeft));
>> Else
>> NextCharacter ()
>> SayCharacter ()
>> ;PerformScript SayNextCharacter ()
>> EndIf
>> EndScript
>>
>> Thanks
>>
>> Sean
>>
>> Original Message:
>> -----------------
>> From:  gerald.g.weichbrodt@xxxxxx
>> Date: Wed, 18 May 2011 11:23:07 -0400
>> To: program-l@xxxxxxxxxxxxx
>> Subject: [program-l] Re: Not reading correctly, visual studio 2008 and
>> latest Jaws
>>
>>
>> Okay, well I take back my solution.  It's not as easy as simply stealing
>> the Script NextCharacter and Script PriorCharacter scripts from JAWS 11's
>> default.jss.  Have to think some more about this one.  Don't you just love
>> change?
>>
>> Regards,
>> Jerry
>>
>>
>>
>> gerald.g.weichbrodt@xxxxxx
>> Sent by: program-l-bounce@xxxxxxxxxxxxx
>> 05/18/2011 11:04 AM
>> Please respond to
>> program-l@xxxxxxxxxxxxx
>>
>>
>> To
>> program-l@xxxxxxxxxxxxx
>> cc
>>
>> Subject
>> [program-l] Re: Not reading correctly, visual studio 2008 and latest Jaws
>>
>>
>>
>>
>>
>>
>>
>> Hi all,
>> Well, it should have been obvious, but I think I have the difference
>> between JAWS 11 and 12 that has messed some stuff up in the Visual Studio
>> scripts.  The simple answer is that JAWS 11 takes care of dealing with
>> arrowing left and right with a script that says:
>> Script SayNextCharacter ()
>> SayCharacterUnit(UnitMove_Next)
>> EndScript
>>
>> JAWS 12 has:
>> Script SayNextCharacter ()
>> NextCharacter ()
>> SayCharacterUnit(UnitMove_Next)
>> EndScript
>>
>> The Visual Studio scripts have their own version of SayCharacterUnit which
>> includes moving the cursor left or right.  Since Freedom Scientific
>> actually broke moving the cursor out of SayCharacterUnit, we now get two
>> cursor movements rather than the single one.  Perhaps the simple solution
>> is to take the JAWS 11 version of SayNextCharacter and SayPriorCharacter
>> and put those into the Visual Studio script file? What do folks think?
>>
>> Regards,
>> Jerry
>> Nothing in this message is intended to constitute an electronic signature
>> unless a specific statement to the contrary is included in this message.
>>
>> Confidentiality Note: This message is intended only for the person or
>> entity to which it is addressed. It may contain confidential and/or
>> privileged material. Any review, transmission, dissemination or other use,
>> or taking of any action in reliance upon this message by persons or
>> entities other than the intended recipient is prohibited and may be
>> unlawful. If you received this message in error, please contact the sender
>> and delete it from your computer.
>>
>>
>> Nothing in this message is intended to constitute an electronic signature
>> unless a specific statement to the contrary is included in this message.
>>
>> Confidentiality Note: This message is intended only for the person or
>> entity to which it is addressed. It may contain confidential and/or
>> privileged material.  Any review, transmission, dissemination or other use,
>> or taking of any action in reliance upon this message by persons or
>> entities other than the intended recipient is prohibited and may be
>> unlawful. If you received this message in error, please contact the sender
>> and delete it from your computer.
>>
>>
>> --------------------------------------------------------------------
>> mail2web - Check your email from the web at
>> http://mail2web.com/ .
>>
>>
>> ** To leave the list, click on the immediately-following link:-
>> ** [mailto:program-l-request@xxxxxxxxxxxxx?subject=unsubscribe]
>> ** If this link doesn't work then send a message to:
>> ** program-l-request@xxxxxxxxxxxxx
>> ** and in the Subject line type
>> ** unsubscribe
>> ** For other list commands such as vacation mode, click on the
>> ** immediately-following link:-
>> ** [mailto:program-l-request@xxxxxxxxxxxxx?subject=faq]
>> ** or send a message, to
>> ** program-l-request@xxxxxxxxxxxxx with the Subject:- faq
>>
>__________
>View the list's information and change your settings at 
>//www.freelists.org/list/programmingblind

__________
View the list's information and change your settings at 
//www.freelists.org/list/programmingblind

Other related posts:

  • » Re: [program-l] Re: Not reading correctly, visual studio 2008 andlatest Jaws - Jacob Kruger