[jawsscripts] Re: Add ons.

  • From: Jitendra <Jeet.kumar1@xxxxxxxxx>
  • To: jawsscripts@xxxxxxxxxxxxx
  • Date: Thu, 21 Nov 2013 10:03:55 +0530

Hello friend, there were several ones in the past, don't know if they 
exist now,
1. Hj clip utility for multiple clipboard function in jaws by Jim bauer.
2. jfw technical by Michael Curran for script authors to explore various 
jaws functions, windows and objects.
3. BX, a very powerful utility for script authors by doug lee, available 
dlee.org
4. jls utilities by Jim snowbarger for script authors.
    * 5. enhanced saysystemtime script and some other scripts by Graham
      Pearce, saysystemtime script was used to tell number of days left
      in a year and several other features, I forgot.
    * there may be more than that, but it is up to authors and other
      friends on the list to share them, I also need some of them.

but if you are looking for some specific feature, please write us back, 
see if we or other members can be of any help,
hope this helps.
thanks, Jitendra, india.
Darragh Ó Héiligh wrote:
> Hello, 
> Is there a set of scripts out there that adds additional functionality to 
> Jaws? I don't mean specific scripts for Skype or anything like that but 
> scripts that are useful in all situations that are added to the default 
> script file. 
>
> For example, I have a set of modifications that I make when I install Jaws.  
> I work in a lot of list views so navigating around them quickly is very 
> important.  The scripts that I add are very simple. 
>
> The first navigates backword and forward through a row reading each column 
> and it's title.  
> The second virtualizes the column that I'm currently reading. 
> The third one virtualizes all the columns on the row that I'm currently 
> focused on. 
>
> I also have a few others for cycling through folders in Outlook and providing 
> the folders that have unread messages in the virtual viewer.  
>
> I'm sure that on this list a lot of people write little changes and 
> enhancements to Jaws.  It would be great to package these together. 
>
> Here's my small script for virtualizing a list row. 
> Script VirtualizeAllListColumns ()
> var
>       int nCol,
>       int nMaxCols,
>       string sHeader,
>       string sText,
>       handle hCurrent,
>       int nCurrent
>
> If !(GetRunningFSProducts() & product_JAWS) then
>       return
> EndIf
> let hCurrent=getCurrentWindow()
> if !IsTrueListView(hCurrent) then
>       sayMessage(OT_ERROR,cmsgNotInAListview_L,cmsgNotInAListview_S)
>       return
> endIf
> let nMaxCols=lvGetNumOfColumns(hCurrent)
> let nCol=1
> let nCurrent=lvGetFocusItem(hCurrent)
> UserBufferClear ()
> while nCol<=nMaxCols
> let sHeader=lvGetColumnHeader(hCurrent,nCol)
> let sText=lvGetItemText(hCurrent,nCurrent,nCol)
>
> UserBufferAddText (sHeader)
> UserBufferAddText (sText)
> LET nCol = nCol + 1
> EndWhile
> UserBufferActivate ()
> EndScript
> __________�
>
> View the list's information and change your settings at 
> http://www.freelists.org/list/jawsscripts
>
>
>   


--- Disclaimer --- The information in this mail is confidential and is intended 
solely for addressee. Access to this mail by anyone else is unauthorised. 
Copying or further distribution beyond the original recipient may be unlawful. 
Any opinion expressed in this mail is that of sender and does not necessarily 
reflect that of State Bank group. --- 

__________�

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

Other related posts: