+NEW: With JAWS cursor, the top of file and bottom of file commands jumps the cursor over the buffer to the top and to the bottom.
This commit is contained in:
parent
cd1437deba
commit
b3d14157d4
1 changed files with 14 additions and 0 deletions
|
@ -68,6 +68,20 @@ var string LastLine = lines[ArrayLength (lines)-1]
|
||||||
return LastLine
|
return LastLine
|
||||||
EndFunction
|
EndFunction
|
||||||
|
|
||||||
|
Script TopOfFile()
|
||||||
|
IF IsJAWSCursor ()
|
||||||
|
JAWSPageUp ()
|
||||||
|
EndIf
|
||||||
|
PerformScript TopOfFile()
|
||||||
|
EndScript
|
||||||
|
|
||||||
|
Script BottomOfFile()
|
||||||
|
IF IsJAWSCursor ()
|
||||||
|
RouteJAWSToPc ()
|
||||||
|
EndIf
|
||||||
|
PerformScript BottomOfFile()
|
||||||
|
EndScript
|
||||||
|
|
||||||
string function ProcessUiaText(string text)
|
string function ProcessUiaText(string text)
|
||||||
var stringArray lines = StringSplit (text, "\n", false)
|
var stringArray lines = StringSplit (text, "\n", false)
|
||||||
var int x = 0
|
var int x = 0
|
||||||
|
|
Loading…
Add table
Reference in a new issue