[jawsscripts] Re: String question
- From: David Maynard <dmaynard35@xxxxxxxxxxx>
- To: jawsscripts@xxxxxxxxxxxxx
- Date: Tue, 20 Nov 2007 07:30:48 -0500
How about nextWord, NextWord, SayFromCursor
David Maynard
Franklin NC
dmaynard35@xxxxxxxxxxx
At Tuesday 11/20/2007, you wrote:
OK,
I have an app. that I want to modify the say next and say prior line
pc cursor scripts. For example, if I am going to the next line, I
want Jaws to read the whole line minus the first two words. is
there a way to get a line then chop off the first two words and then
have jaws speak the rest of the line?
I was able to do it with chopping characters, but not with
words. My function is below.
Void Function SayToEndOfLine ()
var
string Line,
STRING PartLine
LET Line = GetLine ()
Pause ()
;SayString ("Fired")
LET PartLine = StringChopLeft (Line, 6)
Pause ()
SayString (PartLine)
EndFunction
How can I do words instead of characters?
THANKS!
Gian Carlo Pedulla
<mailto:GianniP46@xxxxxxxxxxxxx>GianniP46@xxxxxxxxxxxxx
LETS! GO! METS!
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.5.503 / Virus Database: 269.16.1/1140 - Release Date:
11/19/2007 7:05 PM
__________
View the list's information and change your settings at
http://www.freelists.org/list/jawsscripts
- References:
- [jawsscripts] String question
- From: GianniP46
Other related posts:
- » [jawsscripts] String question
- » [jawsscripts] Re: String question
- » [jawsscripts] Re: String question
- » [jawsscripts] Re: String question
- » [jawsscripts] Re: String question
- » [jawsscripts] Re: String question
- » [jawsscripts] Re: String question
- » [jawsscripts] Re: String question
- » [jawsscripts] Re: String question
OK,I have an app. that I want to modify the say next and say prior line pc cursor scripts. For example, if I am going to the next line, I want Jaws to read the whole line minus the first two words. is there a way to get a line then chop off the first two words and then have jaws speak the rest of the line? I was able to do it with chopping characters, but not with words. My function is below.
Void Function SayToEndOfLine ()
var
string Line,
STRING PartLine
LET Line = GetLine ()
Pause ()
;SayString ("Fired")
LET PartLine = StringChopLeft (Line, 6)
Pause ()
SayString (PartLine)
EndFunction
How can I do words instead of characters?
THANKS!
Gian Carlo Pedulla
<mailto:GianniP46@xxxxxxxxxxxxx>GianniP46@xxxxxxxxxxxxx
LETS! GO! METS!
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.5.503 / Virus Database: 269.16.1/1140 - Release Date:
11/19/2007 7:05 PM
- [jawsscripts] String question
- From: GianniP46