[jawsscripts] Most efficient way to prevent Jaws from intercepting Keyboard shortcuts

  • From: Stephen Clark <SClark04@xxxxxxxxxxxx>
  • To: jawsscripts@xxxxxxxxxxxxx
  • Date: Fri, 4 Aug 2017 23:56:44 -0400

Hi all,


I'm also new to scripting and I've done a lot of Googling on this 
subject. I'm still not sure if I'm doing this correctly.


I have a program where you can press and hold down the selection keys to 
select portions of data. The default Jaws scripts are interfearing with 
the oporation of this program. For example, it will unselect what I have 
selected if I hold down Shift+arrow keys for too long. So, I created a 
new user script file to pass these keystrokes directly to the program in 
the hopes to bypass any further processing by Jaws.

Here's what I have in the application-specific script file:

include "hjConst.jsh"
include "hjGlobal.jsh"
include "common.jsm"

Script ExtendSelectionLeft ()
TypeCurrentScriptKey()
EndScript

Script ExtendSelectionRight ()
TypeCurrentScriptKey()
EndScript

Script SelectToPreviousMarker ()
TypeCurrentScriptKey()
Say ("Select to previous marker", OT_Message)
EndScript

Script SelectToNextMarker ()
TypeCurrentScriptKey()
Say ("Select to next marker", OT_Message)
EndScript

Script ZoomIn ()
TypeCurrentScriptKey()
EndScript

Script ZoomOut ()
TypeCurrentScriptKey()
EndScript


__________�

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

Other related posts: