+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:
theadam 2025-04-14 19:59:49 +02:00
parent cd1437deba
commit b3d14157d4

View file

@ -68,6 +68,20 @@ var string LastLine = lines[ArrayLength (lines)-1]
return LastLine
EndFunction
Script TopOfFile()
IF IsJAWSCursor ()
JAWSPageUp ()
EndIf
PerformScript TopOfFile()
EndScript
Script BottomOfFile()
IF IsJAWSCursor ()
RouteJAWSToPc ()
EndIf
PerformScript BottomOfFile()
EndScript
string function ProcessUiaText(string text)
var stringArray lines = StringSplit (text, "\n", false)
var int x = 0