Re: changing keyboard settings for Jaws

  • From: Jeet <loveforAll@xxxxxxxxxxxxxx>
  • To: programmingblind@xxxxxxxxxxxxx
  • Date: Wed, 20 Feb 2008 22:22:44 -0800

Hello sir, what version of JAWS you are using?
anyways, all of the scripts that are related to equalizer bands and preAmp, 
increment and decrement, calls the folowing script as  perform Script 
AdjustEqualiserBands ()
Thanks and sorry for the off-topic post.
hope this helps.
keep reading the script for elaberation and solution!
;script
Script AdjustEqualiserBands ()
var
  String sKey,
  Int nBand,
  Int nAdjustment
;if you remove the line below and compile,
;it works.
SayCurrentScriptKeyName()
DebugAlert(WinampTheScriptWasTriggeredBy)
Let sKey = GetCurrentScriptKeyName()
If (WinampScriptsDebugMode) Then
  SpellString(sKey)
EndIf
If (!IsWinampEqualiser()) Then
        TypeCurrentScriptKey()
        Return
EndIf
Let nAdjustment = 0
Let nBand = StringContains("1234567890", sKey)
If (nBand > 0) Then
        Let nAdjustment = 1
EndIf
If (nAdjustment == 0) Then
        Let nBand = StringContains("QWERTYUIOP", sKey)
        If (nBand > 0) Then
                Let nAdjustment = -1
        EndIf
EndIf
If (nAdjustment == 0) Then
        Let nBand = StringContains("qwertyuiop", sKey)
        If (nBand>0) Then
                Let nAdjustment = -1
        EndIf
EndIf
If (nAdjustment == 0) Then
        If (sKey == "tab" || sKey == "`" || sKey == "graveaccent") Then
                Let nBand = 11
                If (sKey == "tab") Then
                        Let nAdjustment = -1
                Else
                        Let nAdjustment = 1
                EndIf
        EndIf
EndIf
SayEqualiserBand(nBand, nAdjustment)
EndScript
-- 
Contact:
Direct-cell: +919213153776
Skype:
Jeet.delhi
"The Scourge Of Authoritarianism Is Intellectualism."


Quoting Octavian Rasnita <orasnita@xxxxxxxxx>:

 Hi and sorry for offtopicness,
 
 Does anyone know why the Jaws scripts for Winamp don't allow setting
 the tab 
 key to not speak when it is pressed?
 
 I've set in Configuration Manager/Keyboard options to mute the tab
 key, but 
 in Winamp it still speaks.
 
 These settings are made both in Winamp.jcf and default.jcf and it
 works in 
 all the programs but Winamp.
 
 Thanks.
 
 Octavian
 
 __________
 View the list's information and change your settings at 
 //www.freelists.org/list/programmingblind

----------------------------------------------------------------------
Find out how you can get spam free email.
http://www.bluebottle.com/tag/3

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

Other related posts: